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