| Index: Source/WebCore/inspector/InjectedScriptHost.h
|
| diff --git a/Source/WebCore/inspector/InjectedScriptHost.h b/Source/WebCore/inspector/InjectedScriptHost.h
|
| index af66b28b318ea9ef9c7148fe7e0f846a6f5c86d6..5b85a50dd9fe1bf74377279e16bb60b533856963 100644
|
| --- a/Source/WebCore/inspector/InjectedScriptHost.h
|
| +++ b/Source/WebCore/inspector/InjectedScriptHost.h
|
| @@ -69,9 +69,7 @@ public:
|
| #endif
|
| , InspectorDOMStorageAgent* domStorageAgent
|
| , InspectorDOMAgent* domAgent
|
| -#if ENABLE(JAVASCRIPT_DEBUGGER)
|
| , InspectorDebuggerAgent* debuggerAgent
|
| -#endif
|
| )
|
| {
|
| m_inspectorAgent = inspectorAgent;
|
| @@ -81,9 +79,7 @@ public:
|
| #endif
|
| m_domStorageAgent = domStorageAgent;
|
| m_domAgent = domAgent;
|
| -#if ENABLE(JAVASCRIPT_DEBUGGER)
|
| m_debuggerAgent = debuggerAgent;
|
| -#endif
|
| }
|
|
|
| static Node* scriptValueAsNode(ScriptValue);
|
| @@ -111,9 +107,7 @@ public:
|
| #endif
|
| String storageIdImpl(Storage*);
|
|
|
| -#if ENABLE(JAVASCRIPT_DEBUGGER)
|
| ScriptDebugServer& scriptDebugServer();
|
| -#endif
|
|
|
| private:
|
| InjectedScriptHost();
|
| @@ -125,9 +119,7 @@ private:
|
| #endif
|
| InspectorDOMStorageAgent* m_domStorageAgent;
|
| InspectorDOMAgent* m_domAgent;
|
| -#if ENABLE(JAVASCRIPT_DEBUGGER)
|
| InspectorDebuggerAgent* m_debuggerAgent;
|
| -#endif
|
| Vector<OwnPtr<InspectableObject> > m_inspectedObjects;
|
| OwnPtr<InspectableObject> m_defaultInspectableObject;
|
| };
|
|
|