1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PPAPI_PROXY_PPB_HOST_RESOLVER_PRIVATE_PROXY_H_
6 #define PPAPI_PROXY_PPB_HOST_RESOLVER_PRIVATE_PROXY_H_
8 #include "base/basictypes.h"
9 #include "ppapi/c/pp_instance.h"
10 #include "ppapi/c/pp_resource.h"
11 #include "ppapi/proxy/interface_proxy.h"
12 #include "ppapi/shared_impl/private/ppb_host_resolver_shared.h"
17 class PPB_HostResolver_Private_Proxy
: public InterfaceProxy
{
19 PPB_HostResolver_Private_Proxy(Dispatcher
* dispatcher
);
20 virtual~PPB_HostResolver_Private_Proxy();
22 static PP_Resource
CreateProxyResource(PP_Instance instance
);
24 // InterfaceProxy implementation.
25 virtual bool OnMessageReceived(const IPC::Message
& msg
);
27 static const ApiID kApiID
= API_ID_PPB_HOSTRESOLVER_PRIVATE
;
30 // Browser->plugin message handlers.
32 uint32 plugin_dispatcher_id
,
33 uint32 host_resolver_id
,
35 const std::string
& canonical_name
,
36 const std::vector
<PP_NetAddress_Private
>& net_address_list
);
38 DISALLOW_COPY_AND_ASSIGN(PPB_HostResolver_Private_Proxy
);
44 #endif // PPAPI_PROXY_PPB_HOST_RESOLVER_PRIVATE_PROXY_H_