| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1208 if (InspectorLayerTreeAgent* layerTreeAgent = instrumentingAgents->inspector
LayerTreeAgent()) | 1208 if (InspectorLayerTreeAgent* layerTreeAgent = instrumentingAgents->inspector
LayerTreeAgent()) |
| 1209 layerTreeAgent->renderLayerDestroyed(renderLayer); | 1209 layerTreeAgent->renderLayerDestroyed(renderLayer); |
| 1210 } | 1210 } |
| 1211 | 1211 |
| 1212 void pseudoElementDestroyedImpl(InstrumentingAgents* instrumentingAgents, Pseudo
Element* pseudoElement) | 1212 void pseudoElementDestroyedImpl(InstrumentingAgents* instrumentingAgents, Pseudo
Element* pseudoElement) |
| 1213 { | 1213 { |
| 1214 if (InspectorLayerTreeAgent* layerTreeAgent = instrumentingAgents->inspector
LayerTreeAgent()) | 1214 if (InspectorLayerTreeAgent* layerTreeAgent = instrumentingAgents->inspector
LayerTreeAgent()) |
| 1215 layerTreeAgent->pseudoElementDestroyed(pseudoElement); | 1215 layerTreeAgent->pseudoElementDestroyed(pseudoElement); |
| 1216 } | 1216 } |
| 1217 | 1217 |
| 1218 bool cssErrorFilter(const CSSParserLocation& location, int propertyId, int error
Type) | 1218 bool cssErrorFilter(const CSSParserString& content, int propertyId, int errorTyp
e) |
| 1219 { | 1219 { |
| 1220 return InspectorCSSAgent::cssErrorFilter(location, propertyId, errorType); | 1220 return InspectorCSSAgent::cssErrorFilter(content, propertyId, errorType); |
| 1221 } | 1221 } |
| 1222 | 1222 |
| 1223 } // namespace InspectorInstrumentation | 1223 } // namespace InspectorInstrumentation |
| 1224 | 1224 |
| 1225 namespace InstrumentationEvents { | 1225 namespace InstrumentationEvents { |
| 1226 const char PaintSetup[] = "PaintSetup"; | 1226 const char PaintSetup[] = "PaintSetup"; |
| 1227 const char PaintLayer[] = "PaintLayer"; | 1227 const char PaintLayer[] = "PaintLayer"; |
| 1228 const char RasterTask[] = "RasterTask"; | 1228 const char RasterTask[] = "RasterTask"; |
| 1229 const char ImageDecodeTask[] = "ImageDecodeTask"; | 1229 const char ImageDecodeTask[] = "ImageDecodeTask"; |
| 1230 const char Paint[] = "Paint"; | 1230 const char Paint[] = "Paint"; |
| 1231 const char Layer[] = "Layer"; | 1231 const char Layer[] = "Layer"; |
| 1232 const char BeginFrame[] = "BeginFrame"; | 1232 const char BeginFrame[] = "BeginFrame"; |
| 1233 }; | 1233 }; |
| 1234 | 1234 |
| 1235 namespace InstrumentationEventArguments { | 1235 namespace InstrumentationEventArguments { |
| 1236 const char LayerId[] = "layerId"; | 1236 const char LayerId[] = "layerId"; |
| 1237 const char PageId[] = "pageId"; | 1237 const char PageId[] = "pageId"; |
| 1238 const char NodeId[] = "nodeId"; | 1238 const char NodeId[] = "nodeId"; |
| 1239 }; | 1239 }; |
| 1240 | 1240 |
| 1241 } // namespace WebCore | 1241 } // namespace WebCore |
| 1242 | 1242 |
| OLD | NEW |