| 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;
|
| };
|
|
|