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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h

Issue 1917733002: [DevTools] Move part of CommandLineAPI to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
index e978afe983993de8c43322ee377880b24d083ac0..69e5959036ab887a361b839002e384fc55b7c895 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
@@ -52,10 +52,6 @@ public:
V8HeapProfilerAgent* heapProfilerAgent() override;
V8ProfilerAgent* profilerAgent() override;
V8RuntimeAgent* runtimeAgent() override;
-
- void setClearConsoleCallback(PassOwnPtr<V8RuntimeAgent::ClearConsoleCallback> callback) { m_clearConsoleCallback = callback; }
- V8RuntimeAgent::ClearConsoleCallback* clearConsoleCallback() { return m_clearConsoleCallback.get(); }
-
private:
V8InspectorSessionImpl(V8DebuggerImpl*, int contextGroupId);
@@ -68,8 +64,6 @@ private:
OwnPtr<V8DebuggerAgentImpl> m_debuggerAgent;
OwnPtr<V8HeapProfilerAgentImpl> m_heapProfilerAgent;
OwnPtr<V8ProfilerAgentImpl> m_profilerAgent;
-
- OwnPtr<V8RuntimeAgent::ClearConsoleCallback> m_clearConsoleCallback;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698