| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 | 365 |
| 366 bool magnifyScaleAroundAnchor(float factor, float x, float y); | 366 bool magnifyScaleAroundAnchor(float factor, float x, float y); |
| 367 | 367 |
| 368 void setIsCursorVisible(Document*, bool, ExceptionState&); | 368 void setIsCursorVisible(Document*, bool, ExceptionState&); |
| 369 | 369 |
| 370 double effectiveMediaVolume(HTMLMediaElement*); | 370 double effectiveMediaVolume(HTMLMediaElement*); |
| 371 String effectivePreload(HTMLMediaElement*); | 371 String effectivePreload(HTMLMediaElement*); |
| 372 | 372 |
| 373 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); | 373 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); |
| 374 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); | 374 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
| 375 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool); | |
| 376 | 375 |
| 377 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); | 376 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); |
| 378 void registerURLSchemeAsBypassingContentSecurityPolicy( | 377 void registerURLSchemeAsBypassingContentSecurityPolicy( |
| 379 const String& scheme, | 378 const String& scheme, |
| 380 const Vector<String>& policyAreas); | 379 const Vector<String>& policyAreas); |
| 381 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( | 380 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( |
| 382 const String& scheme); | 381 const String& scheme); |
| 383 | 382 |
| 384 TypeConversions* typeConversions() const; | 383 TypeConversions* typeConversions() const; |
| 385 PrivateScriptTest* privateScriptTest() const; | 384 PrivateScriptTest* privateScriptTest() const; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 unsigned index, | 541 unsigned index, |
| 543 ExceptionState&); | 542 ExceptionState&); |
| 544 Member<InternalRuntimeFlags> m_runtimeFlags; | 543 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 545 | 544 |
| 546 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 545 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 547 }; | 546 }; |
| 548 | 547 |
| 549 } // namespace blink | 548 } // namespace blink |
| 550 | 549 |
| 551 #endif // Internals_h | 550 #endif // Internals_h |
| OLD | NEW |