| 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 15 matching lines...) Expand all Loading... |
| 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 #include "config.h" | 29 #include "config.h" |
| 30 #include "core/page/PageConsole.h" | 30 #include "core/page/PageConsole.h" |
| 31 | 31 |
| 32 #include "core/dom/Document.h" | 32 #include "core/dom/Document.h" |
| 33 #include "core/dom/ScriptableDocumentParser.h" | 33 #include "core/dom/ScriptableDocumentParser.h" |
| 34 #include "core/inspector/ConsoleAPITypes.h" | 34 #include "core/inspector/ConsoleAPITypes.h" |
| 35 #include "core/inspector/InspectorConsoleInstrumentation.h" | 35 #include "core/inspector/InspectorConsoleInstrumentation.h" |
| 36 #include "core/inspector/ScriptCallStack.h" | |
| 37 #include "core/page/Chrome.h" | 36 #include "core/page/Chrome.h" |
| 38 #include "core/page/ChromeClient.h" | 37 #include "core/page/ChromeClient.h" |
| 39 #include "core/frame/ConsoleBase.h" | 38 #include "core/frame/ConsoleBase.h" |
| 40 #include "core/frame/ConsoleTypes.h" | |
| 41 #include "core/page/Page.h" | 39 #include "core/page/Page.h" |
| 42 #include "wtf/text/StringBuilder.h" | 40 #include "wtf/text/StringBuilder.h" |
| 43 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
| 44 | 42 |
| 45 namespace WebCore { | 43 namespace WebCore { |
| 46 | 44 |
| 47 namespace { | 45 namespace { |
| 48 | 46 |
| 49 int muteCount = 0; | 47 int muteCount = 0; |
| 50 | 48 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 muteCount++; | 114 muteCount++; |
| 117 } | 115 } |
| 118 | 116 |
| 119 void PageConsole::unmute() | 117 void PageConsole::unmute() |
| 120 { | 118 { |
| 121 ASSERT(muteCount > 0); | 119 ASSERT(muteCount > 0); |
| 122 muteCount--; | 120 muteCount--; |
| 123 } | 121 } |
| 124 | 122 |
| 125 } // namespace WebCore | 123 } // namespace WebCore |
| OLD | NEW |