| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 void unregisterInstrumentingAgents(InstrumentingAgents*); | 98 void unregisterInstrumentingAgents(InstrumentingAgents*); |
| 99 | 99 |
| 100 InspectorTimelineAgent* retrieveTimelineAgent(const InspectorInstrumentationCook
ie&); | 100 InspectorTimelineAgent* retrieveTimelineAgent(const InspectorInstrumentationCook
ie&); |
| 101 | 101 |
| 102 // Called from generated instrumentation code. | 102 // Called from generated instrumentation code. |
| 103 InstrumentingAgents* instrumentingAgentsFor(LocalFrame*); | 103 InstrumentingAgents* instrumentingAgentsFor(LocalFrame*); |
| 104 InstrumentingAgents* instrumentingAgentsFor(EventTarget*); | 104 InstrumentingAgents* instrumentingAgentsFor(EventTarget*); |
| 105 InstrumentingAgents* instrumentingAgentsFor(ExecutionContext*); | 105 InstrumentingAgents* instrumentingAgentsFor(ExecutionContext*); |
| 106 InstrumentingAgents* instrumentingAgentsFor(Document&); | 106 InstrumentingAgents* instrumentingAgentsFor(Document&); |
| 107 InstrumentingAgents* instrumentingAgentsFor(Document*); | 107 InstrumentingAgents* instrumentingAgentsFor(Document*); |
| 108 InstrumentingAgents* instrumentingAgentsFor(RenderObject*); | 108 InstrumentingAgents* instrumentingAgentsFor(LayoutObject*); |
| 109 InstrumentingAgents* instrumentingAgentsFor(Node*); | 109 InstrumentingAgents* instrumentingAgentsFor(Node*); |
| 110 InstrumentingAgents* instrumentingAgentsFor(WorkerGlobalScope*); | 110 InstrumentingAgents* instrumentingAgentsFor(WorkerGlobalScope*); |
| 111 | 111 |
| 112 // Helper for the one above. | 112 // Helper for the one above. |
| 113 InstrumentingAgents* instrumentingAgentsForNonDocumentContext(ExecutionContext*)
; | 113 InstrumentingAgents* instrumentingAgentsForNonDocumentContext(ExecutionContext*)
; |
| 114 | 114 |
| 115 } // namespace InspectorInstrumentation | 115 } // namespace InspectorInstrumentation |
| 116 | 116 |
| 117 namespace InstrumentationEvents { | 117 namespace InstrumentationEvents { |
| 118 extern const char PaintSetup[]; | 118 extern const char PaintSetup[]; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 } // namespace blink | 177 } // namespace blink |
| 178 | 178 |
| 179 #include "core/InspectorInstrumentationInl.h" | 179 #include "core/InspectorInstrumentationInl.h" |
| 180 | 180 |
| 181 #include "core/inspector/InspectorInstrumentationCustomInl.h" | 181 #include "core/inspector/InspectorInstrumentationCustomInl.h" |
| 182 | 182 |
| 183 #include "core/InspectorOverridesInl.h" | 183 #include "core/InspectorOverridesInl.h" |
| 184 | 184 |
| 185 #endif // !defined(InspectorInstrumentation_h) | 185 #endif // !defined(InspectorInstrumentation_h) |
| OLD | NEW |