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

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

Issue 464293002: [DevTools] ConsoleMessage storage moved from ConsoleAgent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@remove-can-generate
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/core/inspector/CodeGeneratorInstrumentation.py ('k') | Source/core/inspector/ConsoleMessage.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/ConsoleMessage.h
diff --git a/Source/core/inspector/ConsoleMessage.h b/Source/core/inspector/ConsoleMessage.h
index 4ddeff894ab3eb24846e30c39289f79374ef7bf7..053e907fb84035cddfbc01b380b98098c2428b13 100644
--- a/Source/core/inspector/ConsoleMessage.h
+++ b/Source/core/inspector/ConsoleMessage.h
@@ -44,14 +44,21 @@ public:
void setScriptArguments(PassRefPtrWillBeRawPtr<ScriptArguments>);
unsigned long requestIdentifier() const;
void setRequestIdentifier(unsigned long);
- WorkerGlobalScopeProxy* workerId() { return m_workerProxy; }
- void setWorkerId(WorkerGlobalScopeProxy* proxy) { m_workerProxy = proxy; }
+ double timestamp() const;
+ void setTimestamp(double);
+ WorkerGlobalScopeProxy* workerGlobalScopeProxy() { return m_workerProxy; }
+ void setWorkerGlobalScopeProxy(WorkerGlobalScopeProxy* proxy) { m_workerProxy = proxy; }
MessageSource source() const;
MessageLevel level() const;
const String& message() const;
unsigned columnNumber() const;
+ void frameWindowDiscarded(LocalDOMWindow*);
+ unsigned argumentCount();
+
+ void collectCallStack();
+
void trace(Visitor*);
private:
@@ -68,6 +75,7 @@ private:
OwnPtr<ScriptStateProtectingContext> m_scriptState;
RefPtrWillBeMember<ScriptArguments> m_scriptArguments;
unsigned long m_requestIdentifier;
+ double m_timestamp;
WorkerGlobalScopeProxy* m_workerProxy;
};
« no previous file with comments | « Source/core/inspector/CodeGeneratorInstrumentation.py ('k') | Source/core/inspector/ConsoleMessage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698