OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 20 matching lines...) Expand all Loading... |
31 #ifndef InspectorInstrumentation_h | 31 #ifndef InspectorInstrumentation_h |
32 #define InspectorInstrumentation_h | 32 #define InspectorInstrumentation_h |
33 | 33 |
34 #include "bindings/v8/ScriptString.h" | 34 #include "bindings/v8/ScriptString.h" |
35 #include "core/css/CSSSelector.h" | 35 #include "core/css/CSSSelector.h" |
36 #include "core/css/CSSStyleSheet.h" | 36 #include "core/css/CSSStyleSheet.h" |
37 #include "core/dom/CharacterData.h" | 37 #include "core/dom/CharacterData.h" |
38 #include "core/dom/Element.h" | 38 #include "core/dom/Element.h" |
39 #include "core/dom/ExecutionContext.h" | 39 #include "core/dom/ExecutionContext.h" |
40 #include "core/events/EventContext.h" | 40 #include "core/events/EventContext.h" |
| 41 #include "core/frame/Frame.h" |
41 #include "core/inspector/ConsoleAPITypes.h" | 42 #include "core/inspector/ConsoleAPITypes.h" |
42 #include "core/frame/Frame.h" | |
43 #include "core/page/Page.h" | 43 #include "core/page/Page.h" |
44 #include "core/platform/network/FormData.h" | |
45 #include "core/rendering/HitTestResult.h" | 44 #include "core/rendering/HitTestResult.h" |
46 #include "core/rendering/RenderImage.h" | 45 #include "core/rendering/RenderImage.h" |
47 #include "core/storage/StorageArea.h" | 46 #include "core/storage/StorageArea.h" |
48 #include "modules/websockets/WebSocketFrame.h" | 47 #include "modules/websockets/WebSocketFrame.h" |
49 #include "modules/websockets/WebSocketHandshakeRequest.h" | 48 #include "modules/websockets/WebSocketHandshakeRequest.h" |
50 #include "modules/websockets/WebSocketHandshakeResponse.h" | 49 #include "modules/websockets/WebSocketHandshakeResponse.h" |
| 50 #include "platform/network/FormData.h" |
51 #include "wtf/RefPtr.h" | 51 #include "wtf/RefPtr.h" |
52 | 52 |
53 namespace WebCore { | 53 namespace WebCore { |
54 | 54 |
55 struct CSSParserString; | 55 struct CSSParserString; |
56 class Document; | 56 class Document; |
57 class Element; | 57 class Element; |
58 class DeviceOrientationData; | 58 class DeviceOrientationData; |
59 class GeolocationPosition; | 59 class GeolocationPosition; |
60 class GraphicsContext; | 60 class GraphicsContext; |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 } // namespace WebCore | 181 } // namespace WebCore |
182 | 182 |
183 // This file will soon be generated | 183 // This file will soon be generated |
184 #include "InspectorInstrumentationInl.h" | 184 #include "InspectorInstrumentationInl.h" |
185 | 185 |
186 #include "InspectorInstrumentationCustomInl.h" | 186 #include "InspectorInstrumentationCustomInl.h" |
187 | 187 |
188 #include "InspectorOverridesInl.h" | 188 #include "InspectorOverridesInl.h" |
189 | 189 |
190 #endif // !defined(InspectorInstrumentation_h) | 190 #endif // !defined(InspectorInstrumentation_h) |
OLD | NEW |