| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 InstrumentingAgents* instrumentingAgentsForNonDocumentContext(ExecutionContext*)
; | 120 InstrumentingAgents* instrumentingAgentsForNonDocumentContext(ExecutionContext*)
; |
| 121 | 121 |
| 122 } // namespace InspectorInstrumentation | 122 } // namespace InspectorInstrumentation |
| 123 | 123 |
| 124 namespace InstrumentationEvents { | 124 namespace InstrumentationEvents { |
| 125 extern const char PaintSetup[]; | 125 extern const char PaintSetup[]; |
| 126 extern const char RasterTask[]; | 126 extern const char RasterTask[]; |
| 127 extern const char Paint[]; | 127 extern const char Paint[]; |
| 128 extern const char Layer[]; | 128 extern const char Layer[]; |
| 129 extern const char BeginFrame[]; | 129 extern const char BeginFrame[]; |
| 130 extern const char ActivateLayerTree[]; |
| 130 }; | 131 }; |
| 131 | 132 |
| 132 namespace InstrumentationEventArguments { | 133 namespace InstrumentationEventArguments { |
| 134 extern const char FrameId[]; |
| 133 extern const char LayerId[]; | 135 extern const char LayerId[]; |
| 134 extern const char LayerTreeId[]; | 136 extern const char LayerTreeId[]; |
| 135 extern const char PageId[]; | 137 extern const char PageId[]; |
| 136 }; | 138 }; |
| 137 | 139 |
| 138 namespace InspectorInstrumentation { | 140 namespace InspectorInstrumentation { |
| 139 | 141 |
| 140 inline InstrumentingAgents* instrumentingAgentsFor(ExecutionContext* context) | 142 inline InstrumentingAgents* instrumentingAgentsFor(ExecutionContext* context) |
| 141 { | 143 { |
| 142 if (!context) | 144 if (!context) |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 } // namespace WebCore | 188 } // namespace WebCore |
| 187 | 189 |
| 188 // This file will soon be generated | 190 // This file will soon be generated |
| 189 #include "InspectorInstrumentationInl.h" | 191 #include "InspectorInstrumentationInl.h" |
| 190 | 192 |
| 191 #include "InspectorInstrumentationCustomInl.h" | 193 #include "InspectorInstrumentationCustomInl.h" |
| 192 | 194 |
| 193 #include "InspectorOverridesInl.h" | 195 #include "InspectorOverridesInl.h" |
| 194 | 196 |
| 195 #endif // !defined(InspectorInstrumentation_h) | 197 #endif // !defined(InspectorInstrumentation_h) |
| OLD | NEW |