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

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

Issue 1601283003: DevTools: deoilpanize inspector/v8 and related classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed. Created 4 years, 11 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 383767592a3c0798ab47b76fd07141e55d8d9ee4..131470fde1c7d2dabfb38edbb28606fc8fed7e47 100644
--- a/third_party/WebKit/Source/core/inspector/ConsoleMessage.h
+++ b/third_party/WebKit/Source/core/inspector/ConsoleMessage.h
@@ -39,8 +39,8 @@ public:
void setURL(const String&);
unsigned lineNumber() const;
void setLineNumber(unsigned);
- PassRefPtrWillBeRawPtr<ScriptCallStack> callStack() const;
- void setCallStack(PassRefPtrWillBeRawPtr<ScriptCallStack>);
+ PassRefPtr<ScriptCallStack> callStack() const;
+ void setCallStack(PassRefPtr<ScriptCallStack>);
ScriptState* scriptState() const;
void setScriptState(ScriptState*);
PassRefPtrWillBeRawPtr<ScriptArguments> scriptArguments() const;
@@ -79,7 +79,7 @@ private:
String m_url;
unsigned m_lineNumber;
unsigned m_columnNumber;
- RefPtrWillBeMember<ScriptCallStack> m_callStack;
+ RefPtr<ScriptCallStack> m_callStack;
OwnPtr<ScriptStateProtectingContext> m_scriptState;
RefPtrWillBeMember<ScriptArguments> m_scriptArguments;
unsigned long m_requestIdentifier;

Powered by Google App Engine
This is Rietveld 408576698