| Index: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| diff --git a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| index 2dec46a5c36acc92faae51e8e524cf9792c8aea3..998aff5047646fb66915ccdb46aa9461dda162e4 100644
|
| --- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| +++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
|
| @@ -388,6 +388,16 @@ bool WebRuntimeFeatures::isNotificationsEnabled()
|
| #endif
|
| }
|
|
|
| +void WebRuntimeFeatures::enablePagePopup(bool enable)
|
| +{
|
| + RuntimeEnabledFeatures::setPagePopupEnabled(enable);
|
| +}
|
| +
|
| +bool WebRuntimeFeatures::isPagePopupEnabled()
|
| +{
|
| + return RuntimeEnabledFeatures::pagePopupEnabled();
|
| +}
|
| +
|
| void WebRuntimeFeatures::enablePeerConnection(bool enable)
|
| {
|
| RuntimeEnabledFeatures::setPeerConnectionEnabled(enable);
|
|
|