| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <vector> | |
| 10 | |
| 11 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 12 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 13 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 14 #include "chrome/browser/browser_process_sub_thread.h" | 12 #include "chrome/browser/browser_process_sub_thread.h" |
| 15 #include "chrome/browser/net/chrome_network_delegate.h" | 13 #include "chrome/browser/net/chrome_network_delegate.h" |
| 16 #include "chrome/common/net/predictor_common.h" | 14 #include "chrome/common/net/predictor_common.h" |
| 17 #include "chrome/browser/net/connect_interceptor.h" | 15 #include "chrome/browser/net/connect_interceptor.h" |
| 18 #include "net/base/host_resolver.h" | 16 #include "net/base/host_resolver.h" |
| 19 #include "net/base/network_change_notifier.h" | 17 #include "net/base/network_change_notifier.h" |
| 20 | 18 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // these observers would be used accidentally after we have begun to tear | 110 // these observers would be used accidentally after we have begun to tear |
| 113 // down. | 111 // down. |
| 114 chrome_browser_net::ConnectInterceptor* speculative_interceptor_; | 112 chrome_browser_net::ConnectInterceptor* speculative_interceptor_; |
| 115 net::HostResolver::Observer* prefetch_observer_; | 113 net::HostResolver::Observer* prefetch_observer_; |
| 116 chrome_browser_net::Predictor* predictor_; | 114 chrome_browser_net::Predictor* predictor_; |
| 117 | 115 |
| 118 DISALLOW_COPY_AND_ASSIGN(IOThread); | 116 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 119 }; | 117 }; |
| 120 | 118 |
| 121 #endif // CHROME_BROWSER_IO_THREAD_H_ | 119 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |