Changeset 32587 in webkit for trunk/JavaScriptCore/kjs/object.h


Ignore:
Timestamp:
Apr 25, 2008, 7:02:31 PM (17 years ago)
Author:
[email protected]
Message:

2008-04-25 Sam Weinig <[email protected]>

Rubber-stamped by Mark Rowe.

Remove SavedBuiltins and SavedProperties classes and the methods used to
save data to them. The CachedPage now stores a the JSGlobalObject in full.

  • JavaScriptCore.exp:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • kjs/JSGlobalObject.cpp:
  • kjs/JSGlobalObject.h:
  • kjs/JSVariableObject.cpp:
  • kjs/JSVariableObject.h: (KJS::JSVariableObject::localStorage):
  • kjs/SavedBuiltins.h: Removed.
  • kjs/object.h:
  • kjs/property_map.cpp:
  • kjs/property_map.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/object.h

    r31962 r32587  
    436436    virtual JSValue* lookupSetter(ExecState*, const Identifier& propertyName);
    437437
    438     void saveProperties(SavedProperties &p) const { _prop.save(p); }
    439     void restoreProperties(const SavedProperties &p) { _prop.restore(p); }
    440 
    441438    virtual bool isActivationObject() const { return false; }
    442439    virtual bool isGlobalObject() const { return false; }
Note: See TracChangeset for help on using the changeset viewer.