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 <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/prefs/pref_member.h" | 18 #include "base/prefs/pref_member.h" |
19 #include "base/strings/string_piece.h" | 19 #include "base/strings/string_piece.h" |
20 #include "base/time/time.h" | 20 #include "base/time/time.h" |
21 #include "chrome/browser/net/chrome_network_delegate.h" | 21 #include "chrome/browser/net/chrome_network_delegate.h" |
22 #include "chrome/browser/net/ssl_config_service_manager.h" | 22 #include "components/ssl_config/ssl_config_service_manager.h" |
23 #include "content/public/browser/browser_thread.h" | 23 #include "content/public/browser/browser_thread.h" |
24 #include "content/public/browser/browser_thread_delegate.h" | 24 #include "content/public/browser/browser_thread_delegate.h" |
25 #include "net/base/network_change_notifier.h" | 25 #include "net/base/network_change_notifier.h" |
26 #include "net/http/http_network_session.h" | 26 #include "net/http/http_network_session.h" |
27 #include "net/socket/next_proto.h" | 27 #include "net/socket/next_proto.h" |
28 | 28 |
29 class ChromeNetLog; | 29 class ChromeNetLog; |
30 class PrefProxyConfigTracker; | 30 class PrefProxyConfigTracker; |
31 class PrefService; | 31 class PrefService; |
32 class PrefRegistrySimple; | 32 class PrefRegistrySimple; |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 bool is_quic_allowed_by_policy_; | 498 bool is_quic_allowed_by_policy_; |
499 | 499 |
500 const base::TimeTicks creation_time_; | 500 const base::TimeTicks creation_time_; |
501 | 501 |
502 base::WeakPtrFactory<IOThread> weak_factory_; | 502 base::WeakPtrFactory<IOThread> weak_factory_; |
503 | 503 |
504 DISALLOW_COPY_AND_ASSIGN(IOThread); | 504 DISALLOW_COPY_AND_ASSIGN(IOThread); |
505 }; | 505 }; |
506 | 506 |
507 #endif // CHROME_BROWSER_IO_THREAD_H_ | 507 #endif // CHROME_BROWSER_IO_THREAD_H_ |
OLD | NEW |