| Index: Source/bindings/v8/ScriptObject.h
|
| diff --git a/Source/bindings/v8/ScriptObject.h b/Source/bindings/v8/ScriptObject.h
|
| index ffc806e37c1d6cbe0d4681605443bf7f549473ba..352a2a938ffcb6dc2499230c1b1dadb0f8e63b82 100644
|
| --- a/Source/bindings/v8/ScriptObject.h
|
| +++ b/Source/bindings/v8/ScriptObject.h
|
| @@ -40,23 +40,11 @@ namespace WebCore {
|
| class InspectorFrontendHost;
|
| class ScriptState;
|
|
|
| - class ScriptObject FINAL : public ScriptValue {
|
| - public:
|
| - ScriptObject(ScriptState*, v8::Handle<v8::Object>);
|
| - ScriptObject(ScriptState*, const ScriptValue&);
|
| - ScriptObject();
|
| - virtual ~ScriptObject();
|
| -
|
| - v8::Handle<v8::Object> v8Object() const;
|
| - ScriptState* scriptState() const { return m_scriptState.get(); }
|
| - protected:
|
| - RefPtr<ScriptState> m_scriptState;
|
| - };
|
| -
|
| + // FIXME: Remove this.
|
| class ScriptGlobalObject {
|
| public:
|
| static bool set(ScriptState*, const char* name, InspectorFrontendHost*);
|
| - static bool get(ScriptState*, const char* name, ScriptObject&);
|
| + static bool get(ScriptState*, const char* name, ScriptValue&);
|
| private:
|
| ScriptGlobalObject() { }
|
| };
|
|
|