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

Side by Side Diff: components/sync/driver/startup_controller.cc

Issue 2293583002: Change includes of histogram.h to histogram_macros.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 months 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
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 "components/sync/driver/startup_controller.h" 5 #include "components/sync/driver/startup_controller.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/metrics/histogram.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/strings/string_number_conversions.h" 13 #include "base/strings/string_number_conversions.h"
14 #include "base/threading/thread_task_runner_handle.h" 14 #include "base/threading/thread_task_runner_handle.h"
15 #include "components/sync/driver/sync_driver_switches.h" 15 #include "components/sync/driver/sync_driver_switches.h"
16 #include "components/sync/driver/sync_prefs.h" 16 #include "components/sync/driver/sync_prefs.h"
17 17
18 namespace browser_sync { 18 namespace browser_sync {
19 19
20 namespace { 20 namespace {
21 21
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 if (!start_up_time_.is_null()) { 196 if (!start_up_time_.is_null()) {
197 RecordTimeDeferred(); 197 RecordTimeDeferred();
198 UMA_HISTOGRAM_ENUMERATION("Sync.Startup.DeferredInitTrigger", 198 UMA_HISTOGRAM_ENUMERATION("Sync.Startup.DeferredInitTrigger",
199 TRIGGER_DATA_TYPE_REQUEST, MAX_TRIGGER_VALUE); 199 TRIGGER_DATA_TYPE_REQUEST, MAX_TRIGGER_VALUE);
200 } 200 }
201 received_start_request_ = true; 201 received_start_request_ = true;
202 TryStart(); 202 TryStart();
203 } 203 }
204 204
205 } // namespace browser_sync 205 } // namespace browser_sync
OLDNEW
« no previous file with comments | « components/sync/core_impl/sync_manager_impl.cc ('k') | components/sync/engine_impl/apply_control_data_updates.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698