Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: Source/WebCore/inspector/InjectedScriptHost.h

Issue 13646003: DevTools: Remove ENABLE(INSPECTOR) and ENABLE(JAVASCRIPT_DEBUGGER) from the code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: comments addressed Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};
« no previous file with comments | « Source/WebCore/inspector/InjectedScriptCanvasModule.cpp ('k') | Source/WebCore/inspector/InjectedScriptHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698