| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 [CSS, Inline=FastReturn] | 490 [CSS, Inline=FastReturn] |
| 491 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 491 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 492 | 492 |
| 493 [Worker, Inline=FastReturn] | 493 [Worker, Inline=FastReturn] |
| 494 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 494 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 495 } | 495 } |
| 496 | 496 |
| 497 | 497 |
| 498 interface InspectorCanvasInstrumentation { | 498 interface InspectorCanvasInstrumentation { |
| 499 | 499 |
| 500 #include "bindings/v8/ScriptObject.h" | 500 #include "bindings/v8/ScriptValue.h" |
| 501 | 501 |
| 502 [Canvas] | 502 [Canvas] |
| 503 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 503 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 504 | 504 |
| 505 [Canvas] | 505 [Canvas] |
| 506 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 506 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 507 } | 507 } |
| OLD | NEW |