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 CONTENT_BROWSER_RENDERER_HOST_PEPPER_LOOKUP_REQUEST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_LOOKUP_REQUEST_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_LOOKUP_REQUEST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_LOOKUP_REQUEST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "net/base/address_list.h" | 11 #include "net/base/address_list.h" |
12 #include "net/base/host_resolver.h" | 12 #include "net/base/host_resolver.h" |
13 #include "net/base/net_errors.h" | 13 #include "net/base/net_errors.h" |
14 #include "net/base/single_request_host_resolver.h" | 14 #include "net/base/single_request_host_resolver.h" |
15 | 15 |
16 template<class T> | 16 template<class T> |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 net::SingleRequestHostResolver resolver_; | 50 net::SingleRequestHostResolver resolver_; |
51 net::HostResolver::RequestInfo request_info_; | 51 net::HostResolver::RequestInfo request_info_; |
52 scoped_ptr<T> bound_info_; | 52 scoped_ptr<T> bound_info_; |
53 LookupRequestCallback callback_; | 53 LookupRequestCallback callback_; |
54 | 54 |
55 net::AddressList addresses_; | 55 net::AddressList addresses_; |
56 | 56 |
57 DISALLOW_COPY_AND_ASSIGN(PepperLookupRequest); | 57 DISALLOW_COPY_AND_ASSIGN(PepperLookupRequest); |
58 }; | 58 }; |
59 | 59 |
60 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_LOOKUP_REQUEST_H_ | 60 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_LOOKUP_REQUEST_H_ |
OLD | NEW |