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

Side by Side Diff: components/variations/service/variations_service.cc

Issue 2691263002: Revert of Remove header dependencies from sequence_checker.h to sequenced_worker_pool.h (Closed)
Patch Set: Created 3 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/variations/service/variations_service.h" 5 #include "components/variations/service/variations_service.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/build_time.h" 12 #include "base/build_time.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/memory/ptr_util.h" 14 #include "base/memory/ptr_util.h"
15 #include "base/metrics/histogram_macros.h" 15 #include "base/metrics/histogram_macros.h"
16 #include "base/metrics/sparse_histogram.h" 16 #include "base/metrics/sparse_histogram.h"
17 #include "base/strings/string_util.h" 17 #include "base/strings/string_util.h"
18 #include "base/sys_info.h" 18 #include "base/sys_info.h"
19 #include "base/task_runner_util.h" 19 #include "base/task_runner_util.h"
20 #include "base/threading/sequenced_worker_pool.h"
21 #include "base/timer/elapsed_timer.h" 20 #include "base/timer/elapsed_timer.h"
22 #include "base/values.h" 21 #include "base/values.h"
23 #include "base/version.h" 22 #include "base/version.h"
24 #include "build/build_config.h" 23 #include "build/build_config.h"
25 #include "components/data_use_measurement/core/data_use_user_data.h" 24 #include "components/data_use_measurement/core/data_use_user_data.h"
26 #include "components/metrics/metrics_state_manager.h" 25 #include "components/metrics/metrics_state_manager.h"
27 #include "components/network_time/network_time_tracker.h" 26 #include "components/network_time/network_time_tracker.h"
28 #include "components/pref_registry/pref_registry_syncable.h" 27 #include "components/pref_registry/pref_registry_syncable.h"
29 #include "components/prefs/pref_registry_simple.h" 28 #include "components/prefs/pref_registry_simple.h"
30 #include "components/prefs/pref_service.h" 29 #include "components/prefs/pref_service.h"
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 902
904 if (got_stored_country && stored_country == country_override) 903 if (got_stored_country && stored_country == country_override)
905 return false; 904 return false;
906 905
907 base::Version version(version_info::GetVersionNumber()); 906 base::Version version(version_info::GetVersionNumber());
908 StorePermanentCountry(version, country_override); 907 StorePermanentCountry(version, country_override);
909 return true; 908 return true;
910 } 909 }
911 910
912 } // namespace variations 911 } // namespace variations
OLDNEW
« no previous file with comments | « components/storage_monitor/volume_mount_watcher_win.cc ('k') | components/web_restrictions/browser/web_restrictions_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698