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 12 matching lines...) Expand all Loading... |
23 */ | 23 */ |
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/frame/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/Vector.h" | 37 #include "wtf/Vector.h" |
38 #include "wtf/text/StringHash.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; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 HashMap<String, double> m_times; | 115 HashMap<String, double> m_times; |
116 bool m_enabled; | 116 bool m_enabled; |
117 private: | 117 private: |
118 static int s_enabledAgentCount; | 118 static int s_enabledAgentCount; |
119 }; | 119 }; |
120 | 120 |
121 } // namespace WebCore | 121 } // namespace WebCore |
122 | 122 |
123 | 123 |
124 #endif // !defined(InspectorConsoleAgent_h) | 124 #endif // !defined(InspectorConsoleAgent_h) |
OLD | NEW |