| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 | 298 |
| 299 [DOM, Page] | 299 [DOM, Page] |
| 300 void domContentLoadedEventFired([Keep] LocalFrame*); | 300 void domContentLoadedEventFired([Keep] LocalFrame*); |
| 301 | 301 |
| 302 [Page] | 302 [Page] |
| 303 void loadEventFired([Keep] LocalFrame*); | 303 void loadEventFired([Keep] LocalFrame*); |
| 304 | 304 |
| 305 [Page] | 305 [Page] |
| 306 void frameAttachedToParent([Keep] LocalFrame*); | 306 void frameAttachedToParent([Keep] LocalFrame*); |
| 307 | 307 |
| 308 [Canvas, Page] | 308 [Page] |
| 309 void frameDetachedFromParent([Keep] LocalFrame*); | 309 void frameDetachedFromParent([Keep] LocalFrame*); |
| 310 | 310 |
| 311 [Resource, DOM, Canvas, Page] | 311 [Resource, DOM, Page] |
| 312 void didCommitLoad([Keep] LocalFrame*, DocumentLoader*); | 312 void didCommitLoad([Keep] LocalFrame*, DocumentLoader*); |
| 313 | 313 |
| 314 [DOM, Inline=FastReturn] | 314 [DOM, Inline=FastReturn] |
| 315 void frameDocumentUpdated([Keep] LocalFrame*); | 315 void frameDocumentUpdated([Keep] LocalFrame*); |
| 316 | 316 |
| 317 [Page] | 317 [Page] |
| 318 void loaderDetachedFromFrame(LocalFrame*, DocumentLoader*); | 318 void loaderDetachedFromFrame(LocalFrame*, DocumentLoader*); |
| 319 | 319 |
| 320 [Page] | 320 [Page] |
| 321 void frameStartedLoading([Keep] LocalFrame*); | 321 void frameStartedLoading([Keep] LocalFrame*); |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 interface InspectorOverrides { | 451 interface InspectorOverrides { |
| 452 [CSS, Inline=FastReturn] | 452 [CSS, Inline=FastReturn] |
| 453 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 453 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 454 | 454 |
| 455 [Worker, Inline=FastReturn] | 455 [Worker, Inline=FastReturn] |
| 456 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 456 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 457 | 457 |
| 458 [Resource, Inline=FastReturn] | 458 [Resource, Inline=FastReturn] |
| 459 bool shouldForceCORSPreflight(Document*); | 459 bool shouldForceCORSPreflight(Document*); |
| 460 } | 460 } |
| 461 | |
| 462 | |
| 463 interface InspectorCanvasInstrumentation { | |
| 464 | |
| 465 #include "bindings/core/v8/ScriptValue.h" | |
| 466 | |
| 467 [Canvas] | |
| 468 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | |
| 469 | |
| 470 [Canvas] | |
| 471 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | |
| 472 } | |
| OLD | NEW |