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 CHROME_BROWSER_IO_THREAD_H_ | 5 #ifndef CHROME_BROWSER_IO_THREAD_H_ |
6 #define CHROME_BROWSER_IO_THREAD_H_ | 6 #define CHROME_BROWSER_IO_THREAD_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
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" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "chrome/browser/api/prefs/pref_member.h" |
15 #include "chrome/browser/net/ssl_config_service_manager.h" | 16 #include "chrome/browser/net/ssl_config_service_manager.h" |
16 #include "chrome/browser/prefs/pref_member.h" | |
17 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
18 #include "content/public/browser/browser_thread_delegate.h" | 18 #include "content/public/browser/browser_thread_delegate.h" |
19 #include "net/base/network_change_notifier.h" | 19 #include "net/base/network_change_notifier.h" |
20 | 20 |
21 class ChromeNetLog; | 21 class ChromeNetLog; |
22 class PrefProxyConfigTrackerImpl; | 22 class PrefProxyConfigTrackerImpl; |
23 class PrefService; | 23 class PrefService; |
24 class SystemURLRequestContextGetter; | 24 class SystemURLRequestContextGetter; |
25 | 25 |
26 namespace chrome_browser_net { | 26 namespace chrome_browser_net { |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 system_url_request_context_getter_; | 215 system_url_request_context_getter_; |
216 | 216 |
217 net::SdchManager* sdch_manager_; | 217 net::SdchManager* sdch_manager_; |
218 | 218 |
219 base::WeakPtrFactory<IOThread> weak_factory_; | 219 base::WeakPtrFactory<IOThread> weak_factory_; |
220 | 220 |
221 DISALLOW_COPY_AND_ASSIGN(IOThread); | 221 DISALLOW_COPY_AND_ASSIGN(IOThread); |
222 }; | 222 }; |
223 | 223 |
224 #endif // CHROME_BROWSER_IO_THREAD_H_ | 224 #endif // CHROME_BROWSER_IO_THREAD_H_ |
OLD | NEW |