Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: net/http/http_server_properties_manager.cc

Issue 2511683002: Remove unneeded stringprintf.h usage in chrome/ and net/ (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/http/http_server_properties_impl.cc ('k') | net/http/http_stream_factory_impl_job.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
11 #include "base/metrics/histogram_macros.h" 11 #include "base/metrics/histogram_macros.h"
12 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
13 #include "base/stl_util.h" 13 #include "base/stl_util.h"
14 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/stringprintf.h"
16 #include "base/threading/thread_task_runner_handle.h" 15 #include "base/threading/thread_task_runner_handle.h"
17 #include "base/values.h" 16 #include "base/values.h"
18 #include "net/base/ip_address.h" 17 #include "net/base/ip_address.h"
19 #include "net/base/port_util.h" 18 #include "net/base/port_util.h"
20 #include "url/gurl.h" 19 #include "url/gurl.h"
21 20
22 namespace net { 21 namespace net {
23 22
24 namespace { 23 namespace {
25 24
(...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 quic_servers_dict); 1115 quic_servers_dict);
1117 } 1116 }
1118 1117
1119 void HttpServerPropertiesManager::OnHttpServerPropertiesChanged() { 1118 void HttpServerPropertiesManager::OnHttpServerPropertiesChanged() {
1120 DCHECK(pref_task_runner_->RunsTasksOnCurrentThread()); 1119 DCHECK(pref_task_runner_->RunsTasksOnCurrentThread());
1121 if (!setting_prefs_) 1120 if (!setting_prefs_)
1122 ScheduleUpdateCacheOnPrefThread(); 1121 ScheduleUpdateCacheOnPrefThread();
1123 } 1122 }
1124 1123
1125 } // namespace net 1124 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_server_properties_impl.cc ('k') | net/http/http_stream_factory_impl_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698