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

Unified Diff: components/network_time/network_time_tracker.cc

Issue 2366943003: Create NetworkTimeTracker on startup for users in Finch experiment (Closed)
Patch Set: fix base::Feature declaration 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 side-by-side diff with in-line comments
Download patch
Index: components/network_time/network_time_tracker.cc
diff --git a/components/network_time/network_time_tracker.cc b/components/network_time/network_time_tracker.cc
index a9f9f82c89a7837939f59d6c977295bad32edfac..43534ec99b050b6fb84b3246e8ac9f455190034d 100644
--- a/components/network_time/network_time_tracker.cc
+++ b/components/network_time/network_time_tracker.cc
@@ -8,7 +8,6 @@
#include <string>
#include <utility>
-#include "base/feature_list.h"
#include "base/i18n/time_formatting.h"
#include "base/json/json_reader.h"
#include "base/logging.h"
@@ -35,6 +34,9 @@
namespace network_time {
+const base::Feature kNetworkTimeServiceQuerying{
+ "NetworkTimeServiceQuerying", base::FEATURE_DISABLED_BY_DEFAULT};
+
namespace {
// Time updates happen in two ways. First, other components may call
@@ -95,10 +97,6 @@ const uint32_t kTimeServerMaxSkewSeconds = 10;
const char kTimeServiceURL[] = "http://clients2.google.com/time/1/current";
-// Variations Service feature that enables network time service querying.
-const base::Feature kNetworkTimeServiceQuerying{
- "NetworkTimeServiceQuerying", base::FEATURE_DISABLED_BY_DEFAULT};
-
const char kVariationsServiceCheckTimeIntervalSeconds[] =
"CheckTimeIntervalSeconds";
const char kVariationsServiceRandomQueryProbability[] =
« chrome/browser/browser_process_impl.cc ('K') | « components/network_time/network_time_tracker.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698