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

Unified Diff: third_party/WebKit/Source/core/inspector/ConsoleMessage.h

Issue 2003433004: Remove dependency from ConsoleMessage to workers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1999463002
Patch Set: messageN Created 4 years, 7 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/inspector/ConsoleMessage.h
diff --git a/third_party/WebKit/Source/core/inspector/ConsoleMessage.h b/third_party/WebKit/Source/core/inspector/ConsoleMessage.h
index ecb0c5dc243ad06363b25188efa9503943317849..eaf7a2ea5c990fe535b24e0f1c9b0f64500e8912 100644
--- a/third_party/WebKit/Source/core/inspector/ConsoleMessage.h
+++ b/third_party/WebKit/Source/core/inspector/ConsoleMessage.h
@@ -20,7 +20,6 @@ namespace blink {
class ScriptArguments;
class ScriptState;
-class WorkerInspectorProxy;
class CORE_EXPORT ConsoleMessage final: public GarbageCollectedFinalized<ConsoleMessage> {
public:
@@ -56,8 +55,6 @@ public:
void setRequestIdentifier(unsigned long);
double timestamp() const;
void setTimestamp(double);
- WorkerInspectorProxy* workerInspectorProxy() { return m_workerProxy; }
- void setWorkerInspectorProxy(WorkerInspectorProxy* proxy) { m_workerProxy = proxy; }
unsigned assignMessageId();
unsigned messageId() const { return m_messageId; }
unsigned relatedMessageId() const { return m_relatedMessageId; }
@@ -88,7 +85,6 @@ private:
Member<ScriptArguments> m_scriptArguments;
unsigned long m_requestIdentifier;
double m_timestamp;
- Member<WorkerInspectorProxy> m_workerProxy;
unsigned m_messageId;
unsigned m_relatedMessageId;
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameConsole.cpp ('k') | third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698