| Index: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| index 9c91244d1049b30c2bd74c8543be6188983ccf52..4dfe4b4f997605e555158e5319990eecdb6eb3e8 100644
|
| --- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -302,6 +302,14 @@ bool FrameLoaderClientImpl::allowRunningInsecureContent(bool enabledPerSettings,
|
| return enabledPerSettings;
|
| }
|
|
|
| +bool FrameLoaderClientImpl::allowAutoplay(bool defaultValue)
|
| +{
|
| + if (m_webFrame->contentSettingsClient())
|
| + return m_webFrame->contentSettingsClient()->allowAutoplay(defaultValue);
|
| +
|
| + return defaultValue;
|
| +}
|
| +
|
| void FrameLoaderClientImpl::didNotAllowScript()
|
| {
|
| if (m_webFrame->contentSettingsClient())
|
|
|