| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #ifndef InspectorConsoleAgent_h | 25 #ifndef InspectorConsoleAgent_h |
| 26 #define InspectorConsoleAgent_h | 26 #define InspectorConsoleAgent_h |
| 27 | 27 |
| 28 #include "InspectorFrontend.h" | 28 #include "InspectorFrontend.h" |
| 29 #include "bindings/v8/ScriptState.h" | 29 #include "bindings/v8/ScriptState.h" |
| 30 #include "bindings/v8/ScriptString.h" | 30 #include "bindings/v8/ScriptString.h" |
| 31 #include "core/inspector/ConsoleAPITypes.h" | 31 #include "core/inspector/ConsoleAPITypes.h" |
| 32 #include "core/inspector/InspectorBaseAgent.h" | 32 #include "core/inspector/InspectorBaseAgent.h" |
| 33 #include "core/page/ConsoleTypes.h" | 33 #include "core/page/ConsoleTypes.h" |
| 34 #include <wtf/Forward.h> | 34 #include "wtf/Forward.h" |
| 35 #include <wtf/HashMap.h> | 35 #include "wtf/HashMap.h" |
| 36 #include <wtf/Noncopyable.h> | 36 #include "wtf/Noncopyable.h" |
| 37 #include <wtf/text/StringHash.h> | 37 #include "wtf/Vector.h" |
| 38 #include <wtf/Vector.h> | 38 #include "wtf/text/StringHash.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 class ConsoleMessage; | 42 class ConsoleMessage; |
| 43 class DocumentLoader; | 43 class DocumentLoader; |
| 44 class DOMWindow; | 44 class DOMWindow; |
| 45 class Frame; | 45 class Frame; |
| 46 class InspectorFrontend; | 46 class InspectorFrontend; |
| 47 class InspectorState; | 47 class InspectorState; |
| 48 class InjectedScriptManager; | 48 class InjectedScriptManager; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 HashMap<String, double> m_times; | 111 HashMap<String, double> m_times; |
| 112 bool m_enabled; | 112 bool m_enabled; |
| 113 private: | 113 private: |
| 114 static int s_enabledAgentCount; | 114 static int s_enabledAgentCount; |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 } // namespace WebCore | 117 } // namespace WebCore |
| 118 | 118 |
| 119 | 119 |
| 120 #endif // !defined(InspectorConsoleAgent_h) | 120 #endif // !defined(InspectorConsoleAgent_h) |
| OLD | NEW |