summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/ScriptObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/ScriptObject.h')
-rw-r--r--WebCore/bindings/js/ScriptObject.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/WebCore/bindings/js/ScriptObject.h b/WebCore/bindings/js/ScriptObject.h
index 9880976..f085e8b 100644
--- a/WebCore/bindings/js/ScriptObject.h
+++ b/WebCore/bindings/js/ScriptObject.h
@@ -48,19 +48,6 @@ namespace WebCore {
JSC::JSObject* jsObject() const { return asObject(jsValue()); }
ScriptState* scriptState() const { return m_scriptState; }
- bool set(const String& name, const String&);
- bool set(const char* name, const ScriptObject&);
- bool set(const char* name, const String&);
- bool set(const char* name, double);
- bool set(const char* name, long);
- bool set(const char* name, long long);
- bool set(const char* name, int);
- bool set(const char* name, unsigned);
- bool set(const char* name, unsigned long);
- bool set(const char* name, bool);
-
- static ScriptObject createNew(ScriptState*);
-
protected:
ScriptState* m_scriptState;
};