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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 class Element; | 56 class Element; |
57 class EventTarget; | 57 class EventTarget; |
58 class ExecutionContext; | 58 class ExecutionContext; |
59 class GraphicsContext; | 59 class GraphicsContext; |
60 class GraphicsLayer; | 60 class GraphicsLayer; |
61 class InspectorTimelineAgent; | 61 class InspectorTimelineAgent; |
62 class InstrumentingAgents; | 62 class InstrumentingAgents; |
63 class RenderLayer; | 63 class RenderLayer; |
64 class ThreadableLoaderClient; | 64 class ThreadableLoaderClient; |
65 class WorkerGlobalScope; | 65 class WorkerGlobalScope; |
66 class WorkerGlobalScopeProxy; | 66 class WorkerInspectorProxy; |
67 | 67 |
68 #define FAST_RETURN_IF_NO_FRONTENDS(value) if (!hasFrontends()) return value; | 68 #define FAST_RETURN_IF_NO_FRONTENDS(value) if (!hasFrontends()) return value; |
69 | 69 |
70 class InspectorInstrumentationCookie { | 70 class InspectorInstrumentationCookie { |
71 public: | 71 public: |
72 InspectorInstrumentationCookie(); | 72 InspectorInstrumentationCookie(); |
73 InspectorInstrumentationCookie(InstrumentingAgents*, int); | 73 InspectorInstrumentationCookie(InstrumentingAgents*, int); |
74 InspectorInstrumentationCookie(const InspectorInstrumentationCookie&); | 74 InspectorInstrumentationCookie(const InspectorInstrumentationCookie&); |
75 InspectorInstrumentationCookie& operator=(const InspectorInstrumentationCook
ie&); | 75 InspectorInstrumentationCookie& operator=(const InspectorInstrumentationCook
ie&); |
76 ~InspectorInstrumentationCookie(); | 76 ~InspectorInstrumentationCookie(); |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 | 189 |
190 } // namespace blink | 190 } // namespace blink |
191 | 191 |
192 #include "core/InspectorInstrumentationInl.h" | 192 #include "core/InspectorInstrumentationInl.h" |
193 | 193 |
194 #include "core/inspector/InspectorInstrumentationCustomInl.h" | 194 #include "core/inspector/InspectorInstrumentationCustomInl.h" |
195 | 195 |
196 #include "core/InspectorOverridesInl.h" | 196 #include "core/InspectorOverridesInl.h" |
197 | 197 |
198 #endif // !defined(InspectorInstrumentation_h) | 198 #endif // !defined(InspectorInstrumentation_h) |
OLD | NEW |