| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_HOST_RESOLVER_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_HOST_RESOLVER_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_HOST_RESOLVER_RESOURCE_H_ | 6 #define PPAPI_PROXY_HOST_RESOLVER_RESOURCE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include <stdint.h> |
| 9 |
| 9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
| 10 #include "ppapi/proxy/host_resolver_resource_base.h" | 12 #include "ppapi/proxy/host_resolver_resource_base.h" |
| 11 #include "ppapi/proxy/ppapi_proxy_export.h" | 13 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 12 #include "ppapi/thunk/ppb_host_resolver_api.h" | 14 #include "ppapi/thunk/ppb_host_resolver_api.h" |
| 13 | 15 |
| 14 namespace ppapi { | 16 namespace ppapi { |
| 15 namespace proxy { | 17 namespace proxy { |
| 16 | 18 |
| 17 class PPAPI_PROXY_EXPORT HostResolverResource | 19 class PPAPI_PROXY_EXPORT HostResolverResource |
| 18 : public HostResolverResourceBase, | 20 : public HostResolverResourceBase, |
| 19 public thunk::PPB_HostResolver_API { | 21 public thunk::PPB_HostResolver_API { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 34 PP_Resource GetNetAddress(uint32_t index) override; | 36 PP_Resource GetNetAddress(uint32_t index) override; |
| 35 | 37 |
| 36 private: | 38 private: |
| 37 DISALLOW_COPY_AND_ASSIGN(HostResolverResource); | 39 DISALLOW_COPY_AND_ASSIGN(HostResolverResource); |
| 38 }; | 40 }; |
| 39 | 41 |
| 40 } // namespace proxy | 42 } // namespace proxy |
| 41 } // namespace ppapi | 43 } // namespace ppapi |
| 42 | 44 |
| 43 #endif // PPAPI_PROXY_HOST_RESOLVER_RESOURCE_H_ | 45 #endif // PPAPI_PROXY_HOST_RESOLVER_RESOURCE_H_ |
| OLD | NEW |