| 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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 | 487 |
| 488 [Worker, Inline=FastReturn] | 488 [Worker, Inline=FastReturn] |
| 489 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 489 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 490 | 490 |
| 491 [Page, Inline=FastReturn] | 491 [Page, Inline=FastReturn] |
| 492 GeolocationPosition* overrideGeolocationPosition(Page* page, [DefaultReturn]
GeolocationPosition* position); | 492 GeolocationPosition* overrideGeolocationPosition(Page* page, [DefaultReturn]
GeolocationPosition* position); |
| 493 | 493 |
| 494 [Page, Inline=FastReturn] | 494 [Page, Inline=FastReturn] |
| 495 DeviceOrientationData* overrideDeviceOrientation(Page* page, [DefaultReturn]
DeviceOrientationData* deviceOrientation); | 495 DeviceOrientationData* overrideDeviceOrientation(Page* page, [DefaultReturn]
DeviceOrientationData* deviceOrientation); |
| 496 | 496 |
| 497 [Page, Inline=FastReturn] |
| 498 bool overrideTextAutosizing(Page* page, bool textAutosizing); |
| 499 |
| 497 [Profiler] | 500 [Profiler] |
| 498 String getCurrentUserInitiatedProfileName(ExecutionContext* context, bool in
crementProfileNumber); | 501 String getCurrentUserInitiatedProfileName(ExecutionContext* context, bool in
crementProfileNumber); |
| 499 } | 502 } |
| 500 | 503 |
| 501 | 504 |
| 502 interface InspectorCanvasInstrumentation { | 505 interface InspectorCanvasInstrumentation { |
| 503 | 506 |
| 504 #include "bindings/v8/ScriptObject.h" | 507 #include "bindings/v8/ScriptObject.h" |
| 505 | 508 |
| 506 [Canvas] | 509 [Canvas] |
| 507 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 510 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 508 | 511 |
| 509 [Canvas] | 512 [Canvas] |
| 510 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 513 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 511 } | 514 } |
| OLD | NEW |