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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 18 matching lines...) Expand all Loading... |
29 */ | 29 */ |
30 | 30 |
31 #ifndef InspectorController_h | 31 #ifndef InspectorController_h |
32 #define InspectorController_h | 32 #define InspectorController_h |
33 | 33 |
34 #include "core/inspector/InspectorBaseAgent.h" | 34 #include "core/inspector/InspectorBaseAgent.h" |
35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
37 #include "wtf/HashMap.h" | 37 #include "wtf/HashMap.h" |
38 #include "wtf/Noncopyable.h" | 38 #include "wtf/Noncopyable.h" |
39 #include "wtf/Vector.h" | |
40 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
41 | 40 |
42 namespace blink { | 41 namespace blink { |
43 | 42 |
44 class ContextMenuProvider; | 43 class ContextMenuProvider; |
45 class DOMWrapperWorld; | 44 class DOMWrapperWorld; |
46 class LocalFrame; | 45 class LocalFrame; |
47 class GraphicsContext; | 46 class GraphicsContext; |
48 class GraphicsLayer; | 47 class GraphicsLayer; |
49 class InjectedScriptManager; | 48 class InjectedScriptManager; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 InspectorAgentRegistry m_agents; | 164 InspectorAgentRegistry m_agents; |
166 bool m_isUnderTest; | 165 bool m_isUnderTest; |
167 bool m_deferredAgentsInitialized; | 166 bool m_deferredAgentsInitialized; |
168 String m_hostId; | 167 String m_hostId; |
169 }; | 168 }; |
170 | 169 |
171 } | 170 } |
172 | 171 |
173 | 172 |
174 #endif // !defined(InspectorController_h) | 173 #endif // !defined(InspectorController_h) |
OLD | NEW |