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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 class InspectorState; | 60 class InspectorState; |
61 class InstrumentingAgents; | 61 class InstrumentingAgents; |
62 class IntPoint; | 62 class IntPoint; |
63 class IntSize; | 63 class IntSize; |
64 class Page; | 64 class Page; |
65 class PlatformGestureEvent; | 65 class PlatformGestureEvent; |
66 class PlatformKeyboardEvent; | 66 class PlatformKeyboardEvent; |
67 class PlatformMouseEvent; | 67 class PlatformMouseEvent; |
68 class PlatformTouchEvent; | 68 class PlatformTouchEvent; |
69 class Node; | 69 class Node; |
| 70 class RenderBox; |
70 | 71 |
71 class InspectorController { | 72 class InspectorController { |
72 WTF_MAKE_NONCOPYABLE(InspectorController); | 73 WTF_MAKE_NONCOPYABLE(InspectorController); |
73 WTF_MAKE_FAST_ALLOCATED; | 74 WTF_MAKE_FAST_ALLOCATED; |
74 public: | 75 public: |
75 ~InspectorController(); | 76 ~InspectorController(); |
76 | 77 |
77 static PassOwnPtr<InspectorController> create(Page*, InspectorClient*); | 78 static PassOwnPtr<InspectorController> create(Page*, InspectorClient*); |
78 | 79 |
79 // Settings overrides. | 80 // Settings overrides. |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 InspectorAgentRegistry m_agents; | 159 InspectorAgentRegistry m_agents; |
159 Vector<InspectorAgent*> m_moduleAgents; | 160 Vector<InspectorAgent*> m_moduleAgents; |
160 bool m_isUnderTest; | 161 bool m_isUnderTest; |
161 bool m_deferredAgentsInitialized; | 162 bool m_deferredAgentsInitialized; |
162 }; | 163 }; |
163 | 164 |
164 } | 165 } |
165 | 166 |
166 | 167 |
167 #endif // !defined(InspectorController_h) | 168 #endif // !defined(InspectorController_h) |
OLD | NEW |