| Index: Source/WebCore/inspector/InspectorRuntimeAgent.h
|
| diff --git a/Source/WebCore/inspector/InspectorRuntimeAgent.h b/Source/WebCore/inspector/InspectorRuntimeAgent.h
|
| index c3cf282a03dca2d6b2e3b13b9ab3b2eca47a45b7..638a432914ad3ddf4f0891de51124346f5523ad2 100644
|
| --- a/Source/WebCore/inspector/InspectorRuntimeAgent.h
|
| +++ b/Source/WebCore/inspector/InspectorRuntimeAgent.h
|
| @@ -31,7 +31,6 @@
|
| #ifndef InspectorRuntimeAgent_h
|
| #define InspectorRuntimeAgent_h
|
|
|
| -#if ENABLE(INSPECTOR)
|
|
|
| #include "InspectorBaseAgent.h"
|
| #include "ScriptState.h"
|
| @@ -85,9 +84,7 @@ public:
|
| virtual void releaseObjectGroup(ErrorString*, const String& objectGroup);
|
| virtual void run(ErrorString*);
|
|
|
| -#if ENABLE(JAVASCRIPT_DEBUGGER)
|
| void setScriptDebugServer(ScriptDebugServer*);
|
| -#endif
|
|
|
| protected:
|
| InspectorRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*);
|
| @@ -101,12 +98,9 @@ protected:
|
|
|
| private:
|
| InjectedScriptManager* m_injectedScriptManager;
|
| -#if ENABLE(JAVASCRIPT_DEBUGGER)
|
| ScriptDebugServer* m_scriptDebugServer;
|
| -#endif
|
| };
|
|
|
| } // namespace WebCore
|
|
|
| -#endif // ENABLE(INSPECTOR)
|
| #endif // InspectorRuntimeAgent_h
|
|
|