diff options
Diffstat (limited to 'webkit/glue/webkitclient_impl.cc')
-rw-r--r-- | webkit/glue/webkitclient_impl.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/webkit/glue/webkitclient_impl.cc b/webkit/glue/webkitclient_impl.cc index 07cacbc..b04df0c 100644 --- a/webkit/glue/webkitclient_impl.cc +++ b/webkit/glue/webkitclient_impl.cc @@ -412,17 +412,6 @@ WebKit::WebURL WebKitClientImpl::filePathToURL(const WebKit::WebString& path) { // Glue layer. Once the Glue layer moves entirely into the WebKit layer, these // methods will be deleted. -bool WebKitClientImpl::popupsAllowed(NPP npp) { - bool popups_allowed = false; - if (npp) { - NPAPI::PluginInstance* plugin_instance = - reinterpret_cast<NPAPI::PluginInstance*>(npp->ndata); - if (plugin_instance) - popups_allowed = plugin_instance->popups_allowed(); - } - return popups_allowed; -} - WebCore::String WebKitClientImpl::uiResourceProtocol() { return StdStringToString(webkit_glue::GetUIResourceProtocol()); } |