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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); | 259 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); |
260 void setPageScaleFactor(float scaleFactor, ExceptionState&); | 260 void setPageScaleFactor(float scaleFactor, ExceptionState&); |
261 void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor, Ex
ceptionState&); | 261 void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor, Ex
ceptionState&); |
262 | 262 |
263 void setIsCursorVisible(Document*, bool, ExceptionState&); | 263 void setIsCursorVisible(Document*, bool, ExceptionState&); |
264 | 264 |
265 double effectiveMediaVolume(HTMLMediaElement*); | 265 double effectiveMediaVolume(HTMLMediaElement*); |
266 | 266 |
267 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); | 267 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); |
268 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); | 268 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
| 269 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool); |
269 | 270 |
270 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 271 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
271 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); | 272 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); |
272 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 273 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
273 | 274 |
274 TypeConversions* typeConversions() const; | 275 TypeConversions* typeConversions() const; |
275 PrivateScriptTest* privateScriptTest() const; | 276 PrivateScriptTest* privateScriptTest() const; |
276 DictionaryTest* dictionaryTest() const; | 277 DictionaryTest* dictionaryTest() const; |
277 UnionTypesTest* unionTypesTest() const; | 278 UnionTypesTest* unionTypesTest() const; |
278 | 279 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 | 384 |
384 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 385 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
385 Member<InternalRuntimeFlags> m_runtimeFlags; | 386 Member<InternalRuntimeFlags> m_runtimeFlags; |
386 | 387 |
387 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 388 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
388 }; | 389 }; |
389 | 390 |
390 } // namespace blink | 391 } // namespace blink |
391 | 392 |
392 #endif // Internals_h | 393 #endif // Internals_h |
OLD | NEW |