| 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 #include "chrome/browser/net/predictor_api.h" | 5 #include "chrome/browser/net/predictor_api.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
| 11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
| 12 #include "base/stl_util-inl.h" | 12 #include "base/stl_util-inl.h" |
| 13 #include "base/string_number_conversions.h" | 13 #include "base/string_number_conversions.h" |
| 14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 15 #include "base/values.h" | 15 #include "base/values.h" |
| 16 #include "base/waitable_event.h" | 16 #include "base/synchronization/waitable_event.h" |
| 17 #include "chrome/browser/browser_process.h" | 17 #include "chrome/browser/browser_process.h" |
| 18 #include "chrome/browser/browser_thread.h" | 18 #include "chrome/browser/browser_thread.h" |
| 19 #include "chrome/browser/io_thread.h" | 19 #include "chrome/browser/io_thread.h" |
| 20 #include "chrome/browser/net/preconnect.h" | 20 #include "chrome/browser/net/preconnect.h" |
| 21 #include "chrome/browser/net/referrer.h" | 21 #include "chrome/browser/net/referrer.h" |
| 22 #include "chrome/browser/net/url_info.h" | 22 #include "chrome/browser/net/url_info.h" |
| 23 #include "chrome/browser/prefs/pref_service.h" | 23 #include "chrome/browser/prefs/pref_service.h" |
| 24 #include "chrome/browser/prefs/session_startup_pref.h" | 24 #include "chrome/browser/prefs/session_startup_pref.h" |
| 25 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
| 26 #include "chrome/browser/ui/browser.h" | 26 #include "chrome/browser/ui/browser.h" |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 DCHECK(!g_predictor); | 625 DCHECK(!g_predictor); |
| 626 InitNetworkPredictor(max_queueing_delay, max_parallel_resolves, user_prefs, | 626 InitNetworkPredictor(max_queueing_delay, max_parallel_resolves, user_prefs, |
| 627 local_state, preconnect_enabled); | 627 local_state, preconnect_enabled); |
| 628 } | 628 } |
| 629 } | 629 } |
| 630 | 630 |
| 631 PredictorInit::~PredictorInit() { | 631 PredictorInit::~PredictorInit() { |
| 632 } | 632 } |
| 633 | 633 |
| 634 } // namespace chrome_browser_net | 634 } // namespace chrome_browser_net |
| OLD | NEW |