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

Unified Diff: Source/WebCore/inspector/InstrumentingAgents.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/InstrumentingAgents.h
diff --git a/Source/WebCore/inspector/InstrumentingAgents.h b/Source/WebCore/inspector/InstrumentingAgents.h
index cd8a2d92784f24ff22c66445cc342db1c54a2b0f..75bcf5e2c5e72d016b05ee5cae2d7f74b897b2b4 100644
--- a/Source/WebCore/inspector/InstrumentingAgents.h
+++ b/Source/WebCore/inspector/InstrumentingAgents.h
@@ -116,7 +116,6 @@ public:
InspectorApplicationCacheAgent* inspectorApplicationCacheAgent() const { return m_inspectorApplicationCacheAgent; }
void setInspectorApplicationCacheAgent(InspectorApplicationCacheAgent* agent) { m_inspectorApplicationCacheAgent = agent; }
-#if ENABLE(JAVASCRIPT_DEBUGGER)
InspectorDebuggerAgent* inspectorDebuggerAgent() const { return m_inspectorDebuggerAgent; }
void setInspectorDebuggerAgent(InspectorDebuggerAgent* agent) { m_inspectorDebuggerAgent = agent; }
@@ -131,7 +130,6 @@ public:
InspectorHeapProfilerAgent* inspectorHeapProfilerAgent() const { return m_inspectorHeapProfilerAgent; }
void setInspectorHeapProfilerAgent(InspectorHeapProfilerAgent* agent) { m_inspectorHeapProfilerAgent = agent; }
-#endif
#if ENABLE(WORKERS)
InspectorWorkerAgent* inspectorWorkerAgent() const { return m_inspectorWorkerAgent; }
@@ -169,13 +167,11 @@ private:
InspectorFileSystemAgent* m_inspectorFileSystemAgent;
#endif
InspectorApplicationCacheAgent* m_inspectorApplicationCacheAgent;
-#if ENABLE(JAVASCRIPT_DEBUGGER)
InspectorDebuggerAgent* m_inspectorDebuggerAgent;
PageDebuggerAgent* m_pageDebuggerAgent;
InspectorDOMDebuggerAgent* m_inspectorDOMDebuggerAgent;
InspectorProfilerAgent* m_inspectorProfilerAgent;
InspectorHeapProfilerAgent* m_inspectorHeapProfilerAgent;
-#endif
#if ENABLE(WORKERS)
InspectorWorkerAgent* m_inspectorWorkerAgent;
#endif
« no previous file with comments | « Source/WebCore/inspector/InspectorWorkerResource.h ('k') | Source/WebCore/inspector/InstrumentingAgents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698