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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "core/rendering/HitTestResult.h" | 44 #include "core/rendering/HitTestResult.h" |
45 #include "core/rendering/RenderImage.h" | 45 #include "core/rendering/RenderImage.h" |
46 #include "core/storage/StorageArea.h" | 46 #include "core/storage/StorageArea.h" |
47 #include "platform/network/FormData.h" | 47 #include "platform/network/FormData.h" |
48 #include "platform/network/WebSocketHandshakeRequest.h" | 48 #include "platform/network/WebSocketHandshakeRequest.h" |
49 #include "platform/network/WebSocketHandshakeResponse.h" | 49 #include "platform/network/WebSocketHandshakeResponse.h" |
50 #include "wtf/RefPtr.h" | 50 #include "wtf/RefPtr.h" |
51 | 51 |
52 namespace blink { | 52 namespace blink { |
53 | 53 |
54 struct CSSParserString; | |
55 class Document; | 54 class Document; |
56 class Element; | |
57 class EventTarget; | 55 class EventTarget; |
58 class ExecutionContext; | 56 class ExecutionContext; |
59 class GraphicsContext; | |
60 class GraphicsLayer; | |
61 class InspectorTimelineAgent; | 57 class InspectorTimelineAgent; |
62 class InstrumentingAgents; | 58 class InstrumentingAgents; |
63 class RenderLayer; | |
64 class ThreadableLoaderClient; | 59 class ThreadableLoaderClient; |
65 class WorkerGlobalScope; | 60 class WorkerGlobalScope; |
66 class WorkerInspectorProxy; | 61 class WorkerInspectorProxy; |
67 | 62 |
68 #define FAST_RETURN_IF_NO_FRONTENDS(value) if (!hasFrontends()) return value; | 63 #define FAST_RETURN_IF_NO_FRONTENDS(value) if (!hasFrontends()) return value; |
69 | 64 |
70 class InspectorInstrumentationCookie { | 65 class InspectorInstrumentationCookie { |
71 public: | 66 public: |
72 InspectorInstrumentationCookie(); | 67 InspectorInstrumentationCookie(); |
73 InspectorInstrumentationCookie(InstrumentingAgents*, int); | 68 InspectorInstrumentationCookie(InstrumentingAgents*, int); |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 | 184 |
190 } // namespace blink | 185 } // namespace blink |
191 | 186 |
192 #include "core/InspectorInstrumentationInl.h" | 187 #include "core/InspectorInstrumentationInl.h" |
193 | 188 |
194 #include "core/inspector/InspectorInstrumentationCustomInl.h" | 189 #include "core/inspector/InspectorInstrumentationCustomInl.h" |
195 | 190 |
196 #include "core/InspectorOverridesInl.h" | 191 #include "core/InspectorOverridesInl.h" |
197 | 192 |
198 #endif // !defined(InspectorInstrumentation_h) | 193 #endif // !defined(InspectorInstrumentation_h) |
OLD | NEW |