OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PPAPI_PROXY_NETWORK_PROXY_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_NETWORK_PROXY_RESOURCE_H_ |
6 #define PPAPI_PROXY_NETWORK_PROXY_RESOURCE_H_ | 6 #define PPAPI_PROXY_NETWORK_PROXY_RESOURCE_H_ |
7 | 7 |
8 #include "ppapi/proxy/plugin_resource.h" | 8 #include "ppapi/proxy/plugin_resource.h" |
9 #include "ppapi/proxy/ppapi_proxy_export.h" | 9 #include "ppapi/proxy/ppapi_proxy_export.h" |
10 #include "ppapi/thunk/ppb_network_proxy_api.h" | 10 #include "ppapi/thunk/ppb_network_proxy_api.h" |
11 | 11 |
12 namespace ppapi { | 12 namespace ppapi { |
13 namespace proxy { | 13 namespace proxy { |
14 | 14 |
15 // The proxy-side resource for PPB_NetworkProxy. | 15 // The proxy-side resource for PPB_NetworkProxy. |
16 class PPAPI_PROXY_EXPORT NetworkProxyResource | 16 class PPAPI_PROXY_EXPORT NetworkProxyResource |
17 : public PluginResource, | 17 : public PluginResource, |
18 public thunk::PPB_NetworkProxy_API { | 18 public thunk::PPB_NetworkProxy_API { |
19 public: | 19 public: |
20 NetworkProxyResource(Connection connection, PP_Instance instance); | 20 NetworkProxyResource(Connection connection, PP_Instance instance); |
21 virtual ~NetworkProxyResource(); | 21 virtual ~NetworkProxyResource(); |
22 | 22 |
23 private: | 23 private: |
24 // Resource implementation. | 24 // Resource implementation. |
25 virtual thunk::PPB_NetworkProxy_API* AsPPB_NetworkProxy_API() OVERRIDE; | 25 virtual thunk::PPB_NetworkProxy_API* AsPPB_NetworkProxy_API() override; |
26 | 26 |
27 // PPB_NetworkProxy_API implementation. | 27 // PPB_NetworkProxy_API implementation. |
28 virtual int32_t GetProxyForURL( | 28 virtual int32_t GetProxyForURL( |
29 PP_Instance instance, | 29 PP_Instance instance, |
30 PP_Var url, | 30 PP_Var url, |
31 PP_Var* proxy_string, | 31 PP_Var* proxy_string, |
32 scoped_refptr<TrackedCallback> callback) OVERRIDE; | 32 scoped_refptr<TrackedCallback> callback) override; |
33 | 33 |
34 void OnPluginMsgGetProxyForURLReply(PP_Var* proxy_string_out_param, | 34 void OnPluginMsgGetProxyForURLReply(PP_Var* proxy_string_out_param, |
35 scoped_refptr<TrackedCallback> callback, | 35 scoped_refptr<TrackedCallback> callback, |
36 const ResourceMessageReplyParams& params, | 36 const ResourceMessageReplyParams& params, |
37 const std::string& proxy_string); | 37 const std::string& proxy_string); |
38 | 38 |
39 DISALLOW_COPY_AND_ASSIGN(NetworkProxyResource); | 39 DISALLOW_COPY_AND_ASSIGN(NetworkProxyResource); |
40 }; | 40 }; |
41 | 41 |
42 } // namespace proxy | 42 } // namespace proxy |
43 } // namespace ppapi | 43 } // namespace ppapi |
44 | 44 |
45 #endif // PPAPI_PROXY_NETWORK_PROXY_RESOURCE_H_ | 45 #endif // PPAPI_PROXY_NETWORK_PROXY_RESOURCE_H_ |
OLD | NEW |