OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_SHARED_IMPL_PRIVATE_PPB_HOST_RESOLVER_SHARED_H_ | 5 #ifndef PPAPI_SHARED_IMPL_PRIVATE_PPB_HOST_RESOLVER_SHARED_H_ |
6 #define PPAPI_SHARED_IMPL_PRIVATE_PPB_HOST_RESOLVER_SHARED_H_ | 6 #define PPAPI_SHARED_IMPL_PRIVATE_PPB_HOST_RESOLVER_SHARED_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | |
14 #include "ppapi/shared_impl/resource.h" | 13 #include "ppapi/shared_impl/resource.h" |
15 #include "ppapi/shared_impl/tracked_callback.h" | 14 #include "ppapi/shared_impl/tracked_callback.h" |
16 #include "ppapi/thunk/ppb_host_resolver_private_api.h" | 15 #include "ppapi/thunk/ppb_host_resolver_private_api.h" |
17 | 16 |
18 namespace net { | 17 namespace net { |
19 class AddressList; | 18 class AddressList; |
20 } | 19 } |
21 | 20 |
22 namespace ppapi { | 21 namespace ppapi { |
23 | 22 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 75 |
77 std::string canonical_name_; | 76 std::string canonical_name_; |
78 NetAddressList net_address_list_; | 77 NetAddressList net_address_list_; |
79 | 78 |
80 DISALLOW_COPY_AND_ASSIGN(PPB_HostResolver_Shared); | 79 DISALLOW_COPY_AND_ASSIGN(PPB_HostResolver_Shared); |
81 }; | 80 }; |
82 | 81 |
83 } // namespace ppapi | 82 } // namespace ppapi |
84 | 83 |
85 #endif // PPAPI_SHARED_IMPL_PRIVATE_PPB_HOST_RESOLVER_SHARED_H_ | 84 #endif // PPAPI_SHARED_IMPL_PRIVATE_PPB_HOST_RESOLVER_SHARED_H_ |
OLD | NEW |