OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "net/http/http_server_properties_manager.h" | 5 #include "net/http/http_server_properties_manager.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
9 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
11 #include "base/stl_util.h" | 11 #include "base/stl_util.h" |
12 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
13 #include "base/strings/stringprintf.h" | 13 #include "base/strings/stringprintf.h" |
14 #include "base/thread_task_runner_handle.h" | 14 #include "base/thread_task_runner_handle.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "net/base/net_util.h" | 16 #include "net/base/net_util.h" |
17 | 17 |
18 namespace net { | 18 namespace net { |
19 | 19 |
20 namespace { | 20 namespace { |
21 | 21 |
22 // Time to wait before starting an update the http_server_properties_impl_ cache | 22 // Time to wait before starting an update the http_server_properties_impl_ cache |
23 // from preferences. Scheduling another update during this period will reset the | 23 // from preferences. Scheduling another update during this period will reset the |
24 // timer. | 24 // timer. |
25 const int64 kUpdateCacheDelayMs = 1000; | 25 const int64 kUpdateCacheDelayMs = 1000; |
26 | 26 |
27 // Time to wait before starting an update the preferences from the | 27 // Time to wait before starting an update the preferences from the |
28 // http_server_properties_impl_ cache. Scheduling another update during this | 28 // http_server_properties_impl_ cache. Scheduling another update during this |
29 // period will reset the timer. | 29 // period will reset the timer. |
30 // TODO(rtenneti): Remove OS_ANDROID ifdef after testing if flushing of | |
31 // AlternateProtocolHosts to disk in 500ms helps with QUIC's 0RTT or not. | |
32 #if defined(OS_ANDROID) | |
33 const int64 kUpdatePrefsDelayMs = 500; | |
34 #else | |
35 const int64 kUpdatePrefsDelayMs = 5000; | 30 const int64 kUpdatePrefsDelayMs = 5000; |
36 #endif | |
37 | 31 |
38 // "version" 0 indicates, http_server_properties doesn't have "version" | 32 // "version" 0 indicates, http_server_properties doesn't have "version" |
39 // property. | 33 // property. |
40 const int kMissingVersion = 0; | 34 const int kMissingVersion = 0; |
41 | 35 |
42 // The version number of persisted http_server_properties. | 36 // The version number of persisted http_server_properties. |
43 const int kVersionNumber = 3; | 37 const int kVersionNumber = 3; |
44 | 38 |
45 typedef std::vector<std::string> StringVector; | 39 typedef std::vector<std::string> StringVector; |
46 | 40 |
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 completion.Run(); | 783 completion.Run(); |
790 } | 784 } |
791 | 785 |
792 void HttpServerPropertiesManager::OnHttpServerPropertiesChanged() { | 786 void HttpServerPropertiesManager::OnHttpServerPropertiesChanged() { |
793 DCHECK(pref_task_runner_->RunsTasksOnCurrentThread()); | 787 DCHECK(pref_task_runner_->RunsTasksOnCurrentThread()); |
794 if (!setting_prefs_) | 788 if (!setting_prefs_) |
795 ScheduleUpdateCacheOnPrefThread(); | 789 ScheduleUpdateCacheOnPrefThread(); |
796 } | 790 } |
797 | 791 |
798 } // namespace net | 792 } // namespace net |
OLD | NEW |