| Index: Source/core/testing/Internals.cpp
|
| diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
|
| index 981b7c9143119ef885b49b9ea5f0d3ab908a0531..d334f858866f337cee2152a6335b265a0d2d8a64 100644
|
| --- a/Source/core/testing/Internals.cpp
|
| +++ b/Source/core/testing/Internals.cpp
|
| @@ -1868,6 +1868,12 @@ void Internals::mediaPlayerPlayingRemotelyChanged(HTMLMediaElement* mediaElement
|
| mediaElement->disconnectedFromRemoteDevice();
|
| }
|
|
|
| +void Internals::setAllowHiddenVolumeControls(HTMLMediaElement* mediaElement, bool allow)
|
| +{
|
| + ASSERT(mediaElement);
|
| + mediaElement->setAllowHiddenVolumeControls(allow);
|
| +}
|
| +
|
| void Internals::registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
|
| {
|
| SchemeRegistry::registerURLSchemeAsBypassingContentSecurityPolicy(scheme);
|
|
|