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

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

Issue 47613002: Use FINAL macro for classes whose virtual destructor was removed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
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 21 matching lines...) Expand all
32 #include "bindings/v8/ScriptState.h" 32 #include "bindings/v8/ScriptState.h"
33 #include "core/inspector/ScriptCallStack.h" 33 #include "core/inspector/ScriptCallStack.h"
34 #include "core/frame/ConsoleTypes.h" 34 #include "core/frame/ConsoleTypes.h"
35 #include "wtf/Forward.h" 35 #include "wtf/Forward.h"
36 #include "wtf/PassOwnPtr.h" 36 #include "wtf/PassOwnPtr.h"
37 37
38 namespace WebCore { 38 namespace WebCore {
39 39
40 class Page; 40 class Page;
41 41
42 class PageConsole { 42 class PageConsole FINAL {
43 public: 43 public:
44 static PassOwnPtr<PageConsole> create(Page* page) { return adoptPtr(new Page Console(page)); } 44 static PassOwnPtr<PageConsole> create(Page* page) { return adoptPtr(new Page Console(page)); }
45 45
46 void addMessage(MessageSource, MessageLevel, const String& message); 46 void addMessage(MessageSource, MessageLevel, const String& message);
47 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); 47 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);
48 void addMessage(MessageSource, MessageLevel, const String& message, PassRefP tr<ScriptCallStack>); 48 void addMessage(MessageSource, MessageLevel, const String& message, PassRefP tr<ScriptCallStack>);
49 static String formatStackTraceString(const String& originalMessage, PassRefP tr<ScriptCallStack>); 49 static String formatStackTraceString(const String& originalMessage, PassRefP tr<ScriptCallStack>);
50 50
51 static void mute(); 51 static void mute();
52 static void unmute(); 52 static void unmute();
53 53
54 private: 54 private:
55 explicit PageConsole(Page*); 55 explicit PageConsole(Page*);
56 56
57 Page* m_page; 57 Page* m_page;
58 }; 58 };
59 59
60 } // namespace WebCore 60 } // namespace WebCore
61 61
62 #endif // PageConsole_h 62 #endif // PageConsole_h
OLDNEW
« no previous file with comments | « Source/core/loader/archive/MHTMLArchive.h ('k') | Source/core/platform/chromium/support/WebRTCSessionDescription.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698