| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 5 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
| 6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <set> | 12 #include <set> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 19 #include "base/memory/scoped_ptr.h" | 19 #include "base/memory/scoped_ptr.h" |
| 20 #include "base/memory/weak_ptr.h" | 20 #include "base/memory/weak_ptr.h" |
| 21 #include "base/prefs/pref_member.h" | |
| 22 #include "base/strings/string_piece.h" | 21 #include "base/strings/string_piece.h" |
| 23 #include "base/time/time.h" | 22 #include "base/time/time.h" |
| 23 #include "components/prefs/pref_member.h" |
| 24 #include "components/ssl_config/ssl_config_service_manager.h" | 24 #include "components/ssl_config/ssl_config_service_manager.h" |
| 25 #include "ios/web/public/web_thread_delegate.h" | 25 #include "ios/web/public/web_thread_delegate.h" |
| 26 #include "net/base/network_change_notifier.h" | 26 #include "net/base/network_change_notifier.h" |
| 27 #include "net/http/http_network_session.h" | 27 #include "net/http/http_network_session.h" |
| 28 | 28 |
| 29 class PrefProxyConfigTracker; | 29 class PrefProxyConfigTracker; |
| 30 class PrefService; | 30 class PrefService; |
| 31 class SystemURLRequestContextGetter; | 31 class SystemURLRequestContextGetter; |
| 32 | 32 |
| 33 namespace base { | 33 namespace base { |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 system_url_request_context_getter_; | 395 system_url_request_context_getter_; |
| 396 | 396 |
| 397 const base::TimeTicks creation_time_; | 397 const base::TimeTicks creation_time_; |
| 398 | 398 |
| 399 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; | 399 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; |
| 400 | 400 |
| 401 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); | 401 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); |
| 402 }; | 402 }; |
| 403 | 403 |
| 404 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 404 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
| OLD | NEW |