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

Unified Diff: Source/core/frame/PageConsole.cpp

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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/PageConsole.h ('k') | Source/core/html/HTMLCanvasElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/PageConsole.cpp
diff --git a/Source/core/frame/PageConsole.cpp b/Source/core/frame/PageConsole.cpp
index dde7232e91bca031914200f4d4bd166544003656..1d5b315692ecd13e8d6e292a45df8709f8326e9f 100644
--- a/Source/core/frame/PageConsole.cpp
+++ b/Source/core/frame/PageConsole.cpp
@@ -53,7 +53,7 @@ PageConsole::PageConsole(FrameHost& frameHost)
void PageConsole::addMessage(MessageSource source, MessageLevel level, const String& message)
{
- addMessage(source, level, message, String(), 0, 0, 0, 0, 0);
+ addMessage(source, level, message, String(), 0, 0, nullptr, 0, 0);
}
void PageConsole::addMessage(MessageSource source, MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStack)
« no previous file with comments | « Source/core/frame/PageConsole.h ('k') | Source/core/html/HTMLCanvasElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698