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

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

Issue 488543002: Oilpan: fix build after r180544. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/frame/FrameConsole.cpp ('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 ef49aec257aaa469df27b4443c6d749bfba45b1d..4ddeff894ab3eb24846e30c39289f79374ef7bf7 100644
--- a/Source/core/inspector/ConsoleMessage.h
+++ b/Source/core/inspector/ConsoleMessage.h
@@ -40,8 +40,8 @@ public:
void setCallStack(PassRefPtrWillBeRawPtr<ScriptCallStack>);
ScriptState* scriptState() const;
void setScriptState(ScriptState*);
- PassRefPtr<ScriptArguments> scriptArguments() const;
- void setScriptArguments(PassRefPtr<ScriptArguments>);
+ PassRefPtrWillBeRawPtr<ScriptArguments> scriptArguments() const;
+ void setScriptArguments(PassRefPtrWillBeRawPtr<ScriptArguments>);
unsigned long requestIdentifier() const;
void setRequestIdentifier(unsigned long);
WorkerGlobalScopeProxy* workerId() { return m_workerProxy; }
@@ -66,7 +66,7 @@ private:
unsigned m_columnNumber;
RefPtrWillBeMember<ScriptCallStack> m_callStack;
OwnPtr<ScriptStateProtectingContext> m_scriptState;
- RefPtr<ScriptArguments> m_scriptArguments;
+ RefPtrWillBeMember<ScriptArguments> m_scriptArguments;
unsigned long m_requestIdentifier;
WorkerGlobalScopeProxy* m_workerProxy;
};
« no previous file with comments | « Source/core/frame/FrameConsole.cpp ('k') | Source/core/inspector/ConsoleMessage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698