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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 | 289 |
290 [Debugger] | 290 [Debugger] |
291 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT
ext); | 291 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT
ext); |
292 | 292 |
293 [Resource] | 293 [Resource] |
294 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); | 294 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); |
295 | 295 |
296 [PageDebugger] | 296 [PageDebugger] |
297 void didStartProvisionalLoad([Keep] LocalFrame*); | 297 void didStartProvisionalLoad([Keep] LocalFrame*); |
298 | 298 |
299 [Inspector, 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 [Canvas, Page] |
309 void frameDetachedFromParent([Keep] LocalFrame*); | 309 void frameDetachedFromParent([Keep] LocalFrame*); |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 interface InspectorCanvasInstrumentation { | 463 interface InspectorCanvasInstrumentation { |
464 | 464 |
465 #include "bindings/core/v8/ScriptValue.h" | 465 #include "bindings/core/v8/ScriptValue.h" |
466 | 466 |
467 [Canvas] | 467 [Canvas] |
468 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 468 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
469 | 469 |
470 [Canvas] | 470 [Canvas] |
471 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 471 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
472 } | 472 } |
OLD | NEW |