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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h

Issue 2141673002: [DevTools] Always send a copy of worker message through the page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 4 years, 5 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/core/workers/WorkerInspectorProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
index 7ce7e370ac41cd5fa52029fd3e52cda38685e71e..af5e7a44d4159a9b4e94bde211b2f1b679cde9aa 100644
--- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
@@ -37,7 +37,6 @@ public:
void workerThreadCreated(Document*, WorkerThread*, const KURL&);
void workerThreadTerminated();
void dispatchMessageFromWorker(const String&);
- void workerConsoleAgentEnabled();
void addConsoleMessageFromWorker(ConsoleMessage*);
void connectToInspector(PageInspector*);
@@ -60,8 +59,6 @@ private:
PageInspector* m_pageInspector;
String m_url;
String m_inspectorId;
- HeapDeque<Member<ConsoleMessage>> m_consoleMessages;
- bool m_ignoreConsoleMessages;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698