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

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

Issue 11411357: PPB_HostResolver_Private is switched to the new Pepper proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync. Created 7 years, 10 months 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.h
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.h b/content/renderer/pepper/pepper_plugin_delegate_impl.h
index 709b30bb50eadcebf3440cff8b36561fc73a2b3f..b7d62f5dc5eac1db7cc8947092173f29d0b53b11 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.h
@@ -20,7 +20,6 @@
#include "content/renderer/mouse_lock_dispatcher.h"
#include "content/renderer/pepper/pepper_parent_context_provider.h"
#include "content/renderer/render_view_pepper_helper.h"
-#include "ppapi/shared_impl/private/ppb_host_resolver_shared.h"
#include "ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h"
#include "ppapi/shared_impl/private/tcp_socket_private_impl.h"
#include "ui/base/ime/text_input_type.h"
@@ -279,14 +278,6 @@ class PepperPluginDelegateImpl
virtual void TCPServerSocketStopListening(
PP_Resource socket_resource,
uint32 socket_id) OVERRIDE;
- virtual void RegisterHostResolver(
- ppapi::PPB_HostResolver_Shared* host_resolver,
- uint32 host_resolver_id) OVERRIDE;
- virtual void HostResolverResolve(
- uint32 host_resolver_id,
- const ::ppapi::HostPortPair& host_port,
- const PP_HostResolver_Private_Hint* hint) OVERRIDE;
- virtual void UnregisterHostResolver(uint32 host_resolver_id) OVERRIDE;
virtual bool AddNetworkListObserver(
webkit_glue::NetworkListObserver* observer) OVERRIDE;
virtual void RemoveNetworkListObserver(
@@ -354,12 +345,6 @@ class PepperPluginDelegateImpl
uint32 accepted_socket_id,
const PP_NetAddress_Private& local_addr,
const PP_NetAddress_Private& remote_addr);
- void OnHostResolverResolveACK(
- uint32 plugin_dispatcher_id,
- uint32 host_resolver_id,
- bool succeeded,
- const std::string& canonical_name,
- const std::vector<PP_NetAddress_Private>& net_address_list);
// Attempts to create a PPAPI plugin for the given filepath. On success, it
// will return the newly-created module.
@@ -415,8 +400,6 @@ class PepperPluginDelegateImpl
IDMap<ppapi::PPB_TCPServerSocket_Shared> tcp_server_sockets_;
- IDMap<ppapi::PPB_HostResolver_Shared> host_resolvers_;
-
typedef IDMap<scoped_refptr<PepperBrokerImpl>, IDMapOwnPointer> BrokerMap;
BrokerMap pending_connect_broker_;
« no previous file with comments | « content/renderer/pepper/pepper_in_process_resource_creation.cc ('k') | content/renderer/pepper/pepper_plugin_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698