| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 222 |
| 223 [Timeline, Resource, Page, Inline=FastReturn] | 223 [Timeline, Resource, Page, Inline=FastReturn] |
| 224 void didRecalculateStyle(const InspectorInstrumentationCookie&); | 224 void didRecalculateStyle(const InspectorInstrumentationCookie&); |
| 225 | 225 |
| 226 [Timeline, Inline=FastReturn] | 226 [Timeline, Inline=FastReturn] |
| 227 void didRecalculateStyleForElement(Element*); | 227 void didRecalculateStyleForElement(Element*); |
| 228 | 228 |
| 229 [Timeline, Resource, Inline=FastReturn] | 229 [Timeline, Resource, Inline=FastReturn] |
| 230 void didScheduleStyleRecalculation([Keep] Document*); | 230 void didScheduleStyleRecalculation([Keep] Document*); |
| 231 | 231 |
| 232 [CSS, Inline=FastReturn] | |
| 233 InspectorInstrumentationCookie willMatchRule(Document*, StyleRule*, Inspecto
rCSSOMWrappers&, DocumentStyleSheetCollection*); | |
| 234 | |
| 235 [CSS, Inline=FastReturn] | |
| 236 void didMatchRule(const InspectorInstrumentationCookie&, bool matched); | |
| 237 | |
| 238 [CSS, Inline=FastReturn] | |
| 239 InspectorInstrumentationCookie willProcessRule(Document* document, [FastRetu
rn] StyleRule* rule, StyleResolver* styleResolver); | |
| 240 | |
| 241 [CSS, Inline=FastReturn] | |
| 242 void didProcessRule(const InspectorInstrumentationCookie&); | |
| 243 | |
| 244 [Resource, Inline=FastReturn] | 232 [Resource, Inline=FastReturn] |
| 245 void applyUserAgentOverride(Frame*, String* userAgent); | 233 void applyUserAgentOverride(Frame*, String* userAgent); |
| 246 | 234 |
| 247 [Page, Inline=FastReturn] | 235 [Page, Inline=FastReturn] |
| 248 void applyScreenWidthOverride(Frame*, long* width); | 236 void applyScreenWidthOverride(Frame*, long* width); |
| 249 | 237 |
| 250 [Page, Inline=FastReturn] | 238 [Page, Inline=FastReturn] |
| 251 void applyScreenHeightOverride(Frame*, long* height); | 239 void applyScreenHeightOverride(Frame*, long* height); |
| 252 | 240 |
| 253 [Page, Inline=FastReturn] | 241 [Page, Inline=FastReturn] |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 interface InspectorCanvasInstrumentation { | 494 interface InspectorCanvasInstrumentation { |
| 507 | 495 |
| 508 #include "bindings/v8/ScriptObject.h" | 496 #include "bindings/v8/ScriptObject.h" |
| 509 | 497 |
| 510 [Canvas] | 498 [Canvas] |
| 511 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 499 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 512 | 500 |
| 513 [Canvas] | 501 [Canvas] |
| 514 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 502 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 515 } | 503 } |
| OLD | NEW |