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

Unified Diff: components/metrics/client_info.cc

Issue 372473004: Retrieve client_id from GoogleUpdateSettings when its missing from Local State. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment + extra test Created 6 years, 5 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/metrics/client_info.cc
diff --git a/components/keyed_service/core/keyed_service.cc b/components/metrics/client_info.cc
similarity index 50%
copy from components/keyed_service/core/keyed_service.cc
copy to components/metrics/client_info.cc
index 5cfd61d3366268d6b02d83266bc6e396a1de8274..e96d78cd4b7caddaafc81875dafb7d6f20b04de8 100644
--- a/components/keyed_service/core/keyed_service.cc
+++ b/components/metrics/client_info.cc
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "components/keyed_service/core/keyed_service.h"
+#include "components/metrics/client_info.h"
-KeyedService::KeyedService() {}
+namespace metrics {
-KeyedService::~KeyedService() {}
+ClientInfo::ClientInfo() : installation_date(0), reporting_enabled_date(0) {}
-void KeyedService::Shutdown() {}
+} // namespace metrics

Powered by Google App Engine
This is Rietveld 408576698