| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index dcad19b352389879f734234ca6fe73442cc48d20..b809f05932b0600c34a375563b90e8478061b572 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -87,6 +87,7 @@
|
| #include "WebSettingsImpl.h"
|
| #include "WebTextInputInfo.h"
|
| #include "WebViewClient.h"
|
| +#include "WebWindowFeatures.h"
|
| #include "core/accessibility/AXObjectCache.h"
|
| #include "core/css/resolver/StyleResolver.h"
|
| #include "core/dom/Document.h"
|
| @@ -3594,6 +3595,11 @@ void WebViewImpl::setDomainRelaxationForbidden(bool forbidden, const WebString&
|
| SchemeRegistry::setDomainRelaxationForbiddenForURLScheme(forbidden, String(scheme));
|
| }
|
|
|
| +void WebViewImpl::setWindowFeatures(const WebWindowFeatures& features)
|
| +{
|
| + m_page->chrome().setWindowFeatures(features);
|
| +}
|
| +
|
| void WebViewImpl::setScrollbarColors(unsigned inactiveColor,
|
| unsigned activeColor,
|
| unsigned trackColor) {
|
|
|