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

Unified Diff: prefs_interface.h

Issue 2856070: Don't send machine and user ID to Omaha anymore. Send a/r pings instead. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git
Patch Set: Address review comments. Created 10 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
« omaha_request_action.h ('K') | « prefs.cc ('k') | prefs_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: prefs_interface.h
diff --git a/prefs_interface.h b/prefs_interface.h
index 5f754793264fd2bb11b45494217ad3bb9928ceb3..dbfa68abba09b155feb98f7eea47e98c0cfebf54 100644
--- a/prefs_interface.h
+++ b/prefs_interface.h
@@ -9,6 +9,9 @@
namespace chromeos_update_engine {
+extern const char kPrefsLastActivePingDay[];
+extern const char kPrefsLastRollCallPingDay[];
+
// The prefs interface allows access to a persistent preferences
// store. The two reasons for providing this as an interface are
// testing as well as easier switching to a new implementation in the
@@ -33,6 +36,8 @@ class PrefsInterface {
// Associates |key| with an int64 |value|. Returns true on success,
// false otherwise.
virtual bool SetInt64(const std::string& key, const int64_t value) = 0;
+
+ virtual ~PrefsInterface() {}
};
} // namespace chromeos_update_engine
« omaha_request_action.h ('K') | « prefs.cc ('k') | prefs_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698