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

Side by Side Diff: Source/core/frame/PageConsole.h

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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/frame/ImageBitmap.cpp ('k') | Source/core/frame/PageConsole.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2013 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 // console messages and routes them up through the 43 // console messages and routes them up through the
44 // FrameHost to the ChromeClient and Inspector. 44 // FrameHost to the ChromeClient and Inspector.
45 // It's meant as an abstraction around ChromeClient calls 45 // It's meant as an abstraction around ChromeClient calls
46 // and the way that Blink core/ can add messages to the console. 46 // and the way that Blink core/ can add messages to the console.
47 47
48 class PageConsole FINAL { 48 class PageConsole FINAL {
49 public: 49 public:
50 static PassOwnPtr<PageConsole> create(FrameHost& host) { return adoptPtr(new PageConsole(host)); } 50 static PassOwnPtr<PageConsole> create(FrameHost& host) { return adoptPtr(new PageConsole(host)); }
51 51
52 void addMessage(MessageSource, MessageLevel, const String& message); 52 void addMessage(MessageSource, MessageLevel, const String& message);
53 void addMessage(MessageSource, MessageLevel, const String& message, const St ring& sourceURL, unsigned lineNumber, unsigned columnNumber = 0, PassRefPtr<Scri ptCallStack> = 0, ScriptState* = 0, unsigned long requestIdentifier = 0); 53 void addMessage(MessageSource, MessageLevel, const String& message, const St ring& sourceURL, unsigned lineNumber, unsigned columnNumber = 0, PassRefPtr<Scri ptCallStack> = nullptr, ScriptState* = 0, unsigned long requestIdentifier = 0);
54 void addMessage(MessageSource, MessageLevel, const String& message, PassRefP tr<ScriptCallStack>); 54 void addMessage(MessageSource, MessageLevel, const String& message, PassRefP tr<ScriptCallStack>);
55 static String formatStackTraceString(const String& originalMessage, PassRefP tr<ScriptCallStack>); 55 static String formatStackTraceString(const String& originalMessage, PassRefP tr<ScriptCallStack>);
56 56
57 static void mute(); 57 static void mute();
58 static void unmute(); 58 static void unmute();
59 59
60 private: 60 private:
61 explicit PageConsole(FrameHost&); 61 explicit PageConsole(FrameHost&);
62 62
63 FrameHost& m_frameHost; 63 FrameHost& m_frameHost;
64 }; 64 };
65 65
66 } // namespace WebCore 66 } // namespace WebCore
67 67
68 #endif // PageConsole_h 68 #endif // PageConsole_h
OLDNEW
« no previous file with comments | « Source/core/frame/ImageBitmap.cpp ('k') | Source/core/frame/PageConsole.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698