Refactor android test results logging.
[chromium-blink-merge.git] / ppapi / proxy / ppb_host_resolver_private_proxy.h
blob7e9b719d1a84a6ba82855ec58bd22251a9fa84c7
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"
14 namespace ppapi {
15 namespace proxy {
17 class PPB_HostResolver_Private_Proxy : public InterfaceProxy {
18 public:
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;
29 private:
30 // Browser->plugin message handlers.
31 void OnMsgResolveACK(
32 uint32 plugin_dispatcher_id,
33 uint32 host_resolver_id,
34 bool succeeded,
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);
41 } // namespace proxy
42 } // namespace ppapi
44 #endif // PPAPI_PROXY_PPB_HOST_RESOLVER_PRIVATE_PROXY_H_