Changeset 104359 in webkit


Ignore:
Timestamp:
Jan 6, 2012 4:54:54 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

https://bugs.webkit.org/show_bug.cgi?id=75296
JSString should not have JS_EXPORTCLASS annotation

Patch by Hajime Morrita <morrita@chromium.org> on 2012-01-06
Reviewed by Kevin Ollivier.

  • runtime/JSString.h: Removed JS_EXPORTCLASS annotation.
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:

Added missing symbols which were hidden by JS_EXPORTCLASS.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r104355 r104359  
     12012-01-06  Hajime Morrita  <morrita@chromium.org>
     2
     3        https://bugs.webkit.org/show_bug.cgi?id=75296
     4        JSString should not have JS_EXPORTCLASS annotation
     5
     6        Reviewed by Kevin Ollivier.
     7
     8        * runtime/JSString.h: Removed JS_EXPORTCLASS annotation.
     9        * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
     10        Added missing symbols which were hidden by JS_EXPORTCLASS.
     11
    1122012-01-06  Michael Saboff  <msaboff@apple.com>
    213
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def

    r104219 r104359  
    297297    ?s_globalObjectMethodTable@JSGlobalObject@JSC@@1UGlobalObjectMethodTable@2@B
    298298    ?s_info@ExecutableBase@JSC@@2UClassInfo@2@B
     299    ?s_info@JSString@JSC@@2UClassInfo@2@B
    299300    ?setConfigurable@PropertyDescriptor@JSC@@QAEX_N@Z
    300301    ?setDescriptor@PropertyDescriptor@JSC@@QAEXVJSValue@2@I@Z
     
    337338    ?tlsKeyCount@WTF@@YAAAJXZ
    338339    ?tlsKeys@WTF@@YAPAKXZ
     340    ?toBoolean@JSString@JSC@@QBE_NPAVExecState@2@@Z
    339341    ?toInt32@JSC@@YAHN@Z
    340342    ?toInteger@JSValue@JSC@@QBENPAVExecState@2@@Z
  • trunk/Source/JavaScriptCore/runtime/JSString.h

    r103626 r104359  
    6060    JSString* jsStringBuilder(JSGlobalData*);
    6161
    62     class JS_EXPORTCLASS JSString : public JSCell {
     62    class JSString : public JSCell {
    6363    public:
    6464        friend class JIT;
Note: See TracChangeset for help on using the changeset viewer.