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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 [RaisesException] float pageScaleFactor(); | 217 [RaisesException] float pageScaleFactor(); |
218 [RaisesException] void setPageScaleFactor(float scaleFactor); | 218 [RaisesException] void setPageScaleFactor(float scaleFactor); |
219 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float
maxScaleFactor); | 219 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float
maxScaleFactor); |
220 | 220 |
221 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); | 221 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib
le); |
222 | 222 |
223 double effectiveMediaVolume(HTMLMediaElement mediaElement); | 223 double effectiveMediaVolume(HTMLMediaElement mediaElement); |
224 DOMString effectivePreload(HTMLMediaElement mediaElement); | 224 DOMString effectivePreload(HTMLMediaElement mediaElement); |
225 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement mediaElement
, boolean available); | 225 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement mediaElement
, boolean available); |
226 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea
n remote); | 226 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea
n remote); |
227 void setAllowHiddenVolumeControls(HTMLMediaElement mediaElement, boolean all
ow); | |
228 | 227 |
229 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); | 228 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); |
230 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq
uence<DOMString> policyAreas); | 229 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq
uence<DOMString> policyAreas); |
231 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); | 230 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch
eme); |
232 | 231 |
233 TypeConversions typeConversions(); | 232 TypeConversions typeConversions(); |
234 | 233 |
235 // This is enabled only in Debug builds. | 234 // This is enabled only in Debug builds. |
236 // This is because we want to avoid putting the byte stream of testing priva
te scripts | 235 // This is because we want to avoid putting the byte stream of testing priva
te scripts |
237 // into the binary of Release builds. | 236 // into the binary of Release builds. |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 DOMString getScrollAnimationState(Node node); | 356 DOMString getScrollAnimationState(Node node); |
358 | 357 |
359 DOMString getProgrammaticScrollAnimationState(Node node); | 358 DOMString getProgrammaticScrollAnimationState(Node node); |
360 | 359 |
361 ClientRect visualRect(Node node); | 360 ClientRect visualRect(Node node); |
362 | 361 |
363 OriginTrialsTest originTrialsTest(); | 362 OriginTrialsTest originTrialsTest(); |
364 | 363 |
365 void crash(); | 364 void crash(); |
366 }; | 365 }; |
OLD | NEW |