| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 [RaisesException] float pageScaleFactor(); | 216 [RaisesException] float pageScaleFactor(); |
| 217 [RaisesException] void setPageScaleFactor(float scaleFactor); | 217 [RaisesException] void setPageScaleFactor(float scaleFactor); |
| 218 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float
maxScaleFactor); | 218 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float
maxScaleFactor); |
| 219 | 219 |
| 220 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); | 220 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); |
| 221 | 221 |
| 222 double effectiveMediaVolume(HTMLMediaElement mediaElement); | 222 double effectiveMediaVolume(HTMLMediaElement mediaElement); |
| 223 DOMString effectivePreload(HTMLMediaElement mediaElement); | 223 DOMString effectivePreload(HTMLMediaElement mediaElement); |
| 224 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement mediaElement
, boolean available); | 224 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement mediaElement
, boolean available); |
| 225 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea
n remote); | 225 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea
n remote); |
| 226 void setAllowHiddenVolumeControls(HTMLMediaElement mediaElement, boolean all
ow); | |
| 227 | 226 |
| 228 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); | 227 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); |
| 229 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq
uence<DOMString> policyAreas); | 228 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq
uence<DOMString> policyAreas); |
| 230 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); | 229 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); |
| 231 | 230 |
| 232 TypeConversions typeConversions(); | 231 TypeConversions typeConversions(); |
| 233 | 232 |
| 234 // This is enabled only in Debug builds. | 233 // This is enabled only in Debug builds. |
| 235 // This is because we want to avoid putting the byte stream of testing priva
te scripts | 234 // This is because we want to avoid putting the byte stream of testing priva
te scripts |
| 236 // into the binary of Release builds. | 235 // into the binary of Release builds. |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 DOMString getScrollAnimationState(Node node); | 355 DOMString getScrollAnimationState(Node node); |
| 357 | 356 |
| 358 DOMString getProgrammaticScrollAnimationState(Node node); | 357 DOMString getProgrammaticScrollAnimationState(Node node); |
| 359 | 358 |
| 360 ClientRect visualRect(Node node); | 359 ClientRect visualRect(Node node); |
| 361 | 360 |
| 362 OriginTrialsTest originTrialsTest(); | 361 OriginTrialsTest originTrialsTest(); |
| 363 | 362 |
| 364 void crash(); | 363 void crash(); |
| 365 }; | 364 }; |
| OLD | NEW |