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_BASE_H_ | 5 #ifndef PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ |
6 #define PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ | 6 #define PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/basictypes.h" | |
12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" |
13 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
14 #include "ppapi/c/private/ppb_host_resolver_private.h" | 16 #include "ppapi/c/private/ppb_host_resolver_private.h" |
15 #include "ppapi/proxy/plugin_resource.h" | 17 #include "ppapi/proxy/plugin_resource.h" |
16 #include "ppapi/proxy/ppapi_proxy_export.h" | 18 #include "ppapi/proxy/ppapi_proxy_export.h" |
17 | 19 |
18 namespace ppapi { | 20 namespace ppapi { |
19 | 21 |
20 class TrackedCallback; | 22 class TrackedCallback; |
21 | 23 |
22 struct HostPortPair { | 24 struct HostPortPair { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 std::string canonical_name_; | 67 std::string canonical_name_; |
66 std::vector<scoped_refptr<NetAddressResource> > net_address_list_; | 68 std::vector<scoped_refptr<NetAddressResource> > net_address_list_; |
67 | 69 |
68 DISALLOW_COPY_AND_ASSIGN(HostResolverResourceBase); | 70 DISALLOW_COPY_AND_ASSIGN(HostResolverResourceBase); |
69 }; | 71 }; |
70 | 72 |
71 } // namespace proxy | 73 } // namespace proxy |
72 } // namespace ppapi | 74 } // namespace ppapi |
73 | 75 |
74 #endif // PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ | 76 #endif // PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ |
OLD | NEW |