| 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 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/task.h" | 13 #include "base/task.h" |
| 14 #include "chrome/browser/browser_process_sub_thread.h" | |
| 15 #include "chrome/browser/net/ssl_config_service_manager.h" | 14 #include "chrome/browser/net/ssl_config_service_manager.h" |
| 16 #include "chrome/browser/prefs/pref_member.h" | 15 #include "chrome/browser/prefs/pref_member.h" |
| 16 #include "content/browser/browser_process_sub_thread.h" |
| 17 #include "net/base/network_change_notifier.h" | 17 #include "net/base/network_change_notifier.h" |
| 18 | 18 |
| 19 class ChromeNetLog; | 19 class ChromeNetLog; |
| 20 class ChromeURLRequestContextGetter; | 20 class ChromeURLRequestContextGetter; |
| 21 class ExtensionEventRouterForwarder; | 21 class ExtensionEventRouterForwarder; |
| 22 class MediaInternals; | 22 class MediaInternals; |
| 23 class PrefProxyConfigTracker; | 23 class PrefProxyConfigTracker; |
| 24 class PrefService; | 24 class PrefService; |
| 25 class SystemURLRequestContextGetter; | 25 class SystemURLRequestContextGetter; |
| 26 | 26 |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 scoped_refptr<net::URLRequestContextGetter> | 179 scoped_refptr<net::URLRequestContextGetter> |
| 180 system_url_request_context_getter_; | 180 system_url_request_context_getter_; |
| 181 | 181 |
| 182 ScopedRunnableMethodFactory<IOThread> method_factory_; | 182 ScopedRunnableMethodFactory<IOThread> method_factory_; |
| 183 | 183 |
| 184 DISALLOW_COPY_AND_ASSIGN(IOThread); | 184 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 185 }; | 185 }; |
| 186 | 186 |
| 187 #endif // CHROME_BROWSER_IO_THREAD_H_ | 187 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |