OLD | NEW |
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 13 matching lines...) Expand all Loading... |
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 */ | 27 */ |
28 | 28 |
29 #ifndef PageConsole_h | 29 #ifndef PageConsole_h |
30 #define PageConsole_h | 30 #define PageConsole_h |
31 | 31 |
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/page/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 { |
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 virtual ~PageConsole(); | 45 virtual ~PageConsole(); |
46 | 46 |
47 void addMessage(MessageSource, MessageLevel, const String& message); | 47 void addMessage(MessageSource, MessageLevel, const String& message); |
48 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, const St
ring& sourceURL, unsigned lineNumber, unsigned columnNumber = 0, PassRefPtr<Scri
ptCallStack> = 0, ScriptState* = 0, unsigned long requestIdentifier = 0); |
49 void addMessage(MessageSource, MessageLevel, const String& message, PassRefP
tr<ScriptCallStack>); | 49 void addMessage(MessageSource, MessageLevel, const String& message, PassRefP
tr<ScriptCallStack>); |
50 static String formatStackTraceString(const String& originalMessage, PassRefP
tr<ScriptCallStack>); | 50 static String formatStackTraceString(const String& originalMessage, PassRefP
tr<ScriptCallStack>); |
51 | 51 |
52 static void mute(); | 52 static void mute(); |
53 static void unmute(); | 53 static void unmute(); |
54 | 54 |
55 private: | 55 private: |
56 explicit PageConsole(Page*); | 56 explicit PageConsole(Page*); |
57 | 57 |
58 Page* m_page; | 58 Page* m_page; |
59 }; | 59 }; |
60 | 60 |
61 } // namespace WebCore | 61 } // namespace WebCore |
62 | 62 |
63 #endif // PageConsole_h | 63 #endif // PageConsole_h |
OLD | NEW |