diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 9364f22aed35e1a1e9d07c121510f80be3ab0502 (patch) | |
tree | d49911209b132da58d838efa852daf28d516df21 /JavaScriptCore/bindings/runtime_object.h | |
parent | 87eb0cb35bad8784770ebc807e6c982432e47107 (diff) | |
download | external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.zip external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.gz external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.bz2 |
Initial Contribution
Diffstat (limited to 'JavaScriptCore/bindings/runtime_object.h')
-rw-r--r-- | JavaScriptCore/bindings/runtime_object.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/JavaScriptCore/bindings/runtime_object.h b/JavaScriptCore/bindings/runtime_object.h index e2387e3..0ce7d74 100644 --- a/JavaScriptCore/bindings/runtime_object.h +++ b/JavaScriptCore/bindings/runtime_object.h @@ -40,7 +40,8 @@ public: const ClassInfo *classInfo() const { return &info; } virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&); - virtual void put(ExecState *exec, const Identifier &propertyName, JSValue *value); + virtual bool canPut(ExecState *exec, const Identifier &propertyName) const; + virtual void put(ExecState *exec, const Identifier &propertyName, JSValue *value, int attr = None); virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName); virtual JSValue *defaultValue(ExecState *exec, JSType hint) const; virtual bool implementsCall() const; |