| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.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/task.h" | 14 #include "base/task.h" |
| 15 #include "chrome/browser/net/ssl_config_service_manager.h" | 15 #include "chrome/browser/net/ssl_config_service_manager.h" |
| 16 #include "chrome/browser/prefs/pref_member.h" | 16 #include "chrome/browser/prefs/pref_member.h" |
| 17 #include "content/browser/browser_process_sub_thread.h" | 17 #include "content/browser/browser_process_sub_thread.h" |
| 18 #include "net/base/network_change_notifier.h" | 18 #include "net/base/network_change_notifier.h" |
| 19 | 19 |
| 20 class ChromeNetLog; | 20 class ChromeNetLog; |
| 21 class ChromeURLRequestContextGetter; | |
| 22 class ExtensionEventRouterForwarder; | 21 class ExtensionEventRouterForwarder; |
| 23 class MediaInternals; | 22 class MediaInternals; |
| 24 class PrefProxyConfigTrackerImpl; | 23 class PrefProxyConfigTrackerImpl; |
| 25 class PrefService; | 24 class PrefService; |
| 26 class SystemURLRequestContextGetter; | 25 class SystemURLRequestContextGetter; |
| 27 | 26 |
| 28 namespace base { | |
| 29 class ListValue; | |
| 30 } | |
| 31 | |
| 32 namespace net { | 27 namespace net { |
| 33 class CertVerifier; | 28 class CertVerifier; |
| 34 class CookieStore; | 29 class CookieStore; |
| 35 class DnsRRResolver; | 30 class DnsRRResolver; |
| 36 class FtpTransactionFactory; | 31 class FtpTransactionFactory; |
| 37 class HostResolver; | 32 class HostResolver; |
| 38 class HttpAuthHandlerFactory; | 33 class HttpAuthHandlerFactory; |
| 39 class HttpServerProperties; | 34 class HttpServerProperties; |
| 40 class HttpTransactionFactory; | 35 class HttpTransactionFactory; |
| 41 class NetworkDelegate; | 36 class NetworkDelegate; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 system_url_request_context_getter_; | 179 system_url_request_context_getter_; |
| 185 | 180 |
| 186 net::SdchManager* sdch_manager_; | 181 net::SdchManager* sdch_manager_; |
| 187 | 182 |
| 188 ScopedRunnableMethodFactory<IOThread> method_factory_; | 183 ScopedRunnableMethodFactory<IOThread> method_factory_; |
| 189 | 184 |
| 190 DISALLOW_COPY_AND_ASSIGN(IOThread); | 185 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 191 }; | 186 }; |
| 192 | 187 |
| 193 #endif // CHROME_BROWSER_IO_THREAD_H_ | 188 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |