Index: Source/core/testing/Internals.cpp |
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp |
index ffc267b7f55e2e5dc880e0cf396bf9c5258f22e7..23bb40015c52b46e1909478b8adb33c59da31860 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); |