Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2300)

Unified Diff: content/renderer/pepper/pepper_plugin_delegate_impl.cc

Issue 11415140: Refactor 3 PPB_Flash functions to the new resource model. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/pepper/pepper_plugin_delegate_impl.cc
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.cc b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
index 0b7b1a5bac324d9e7ef04a73706440adcf1d48d0..299230489acd06a55846db01d26ba4fd5e420dca 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
@@ -1389,14 +1389,6 @@ void PepperPluginDelegateImpl::ZoomLimitsChanged(double minimum_factor,
render_view_->webview()->zoomLimitsChanged(minimum_level, maximum_level);
}
-std::string PepperPluginDelegateImpl::ResolveProxy(const GURL& url) {
- bool result;
- std::string proxy_result;
- RenderThreadImpl::current()->Send(
- new ViewHostMsg_ResolveProxy(url, &result, &proxy_result));
- return proxy_result;
-}
-
void PepperPluginDelegateImpl::DidStartLoading() {
render_view_->DidStartLoadingForPlugin();
}

Powered by Google App Engine
This is Rietveld 408576698