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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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.cpp
diff --git a/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp b/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
index 012e8d163bfa7979bcc6c20175a0be403c7f9a08..4b3e96d38077c9ccf131273c6e8f6be23bfb0641 100644
--- a/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
+++ b/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
@@ -123,12 +123,12 @@ void ConsoleMessage::setScriptState(ScriptState* scriptState)
m_scriptState.clear();
}
-PassRefPtrWillBeRawPtr<ScriptArguments> ConsoleMessage::scriptArguments() const
+RawPtr<ScriptArguments> ConsoleMessage::scriptArguments() const
{
return m_scriptArguments;
}
-void ConsoleMessage::setScriptArguments(PassRefPtrWillBeRawPtr<ScriptArguments> scriptArguments)
+void ConsoleMessage::setScriptArguments(RawPtr<ScriptArguments> scriptArguments)
{
m_scriptArguments = scriptArguments;
}

Powered by Google App Engine
This is Rietveld 408576698