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

Unified Diff: chrome/browser/profile_resetter/triggered_profile_resetter_win.cc

Issue 1294923003: Add a triggered profile reset mechanism. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: grt nits Created 5 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: chrome/browser/profile_resetter/triggered_profile_resetter_win.cc
diff --git a/chrome/browser/profile_resetter/triggered_profile_resetter_win.cc b/chrome/browser/profile_resetter/triggered_profile_resetter_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..41a0ca8b15e202d5451f3ec348e53383e0344009
--- /dev/null
+++ b/chrome/browser/profile_resetter/triggered_profile_resetter_win.cc
@@ -0,0 +1,69 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/profile_resetter/triggered_profile_resetter.h"
+
+#include "base/metrics/histogram_macros.h"
+#include "base/prefs/pref_service.h"
+#include "base/win/registry.h"
+#include "chrome/browser/profiles/profile.h"
+#include "chrome/common/chrome_constants.h"
+#include "chrome/common/pref_names.h"
+
+// The registry path where the TriggeredReset values get set. Note that this
grt (UTC plus 2) 2015/09/14 14:35:34 wrap these constants in the unnamed namespace
robertshield 2015/09/21 04:16:23 Done.
+// uses the same path for both SxS (Canary) and non-SxS Chrome.
+const wchar_t kTriggeredResetRegistryPath[] =
+ L"Software\\" PRODUCT_STRING_PATH L"\\TriggeredReset";
+
+const wchar_t kTriggeredResetToolName[] = L"ToolName";
+const wchar_t kTriggeredResetTimestamp[] = L"Timestamp";
+
+void TriggeredProfileResetter::Activate() {
engedy 2015/09/14 23:28:56 I'm sad that this code is not tested at all. Could
robertshield 2015/09/21 04:16:23 Done.
+#if DCHECK_IS_ON()
+ activate_called_ = true;
+#endif
+
+ // System profiles don't contain user settings.
+ if (!profile_ || profile_->IsSystemProfile())
engedy 2015/09/14 23:28:56 I am not sure about the default behavior of BCKS c
robertshield 2015/09/21 04:16:23 Yep, incognito mode does work correctly.
engedy 2015/09/21 12:56:10 Acknowledged.
+ return;
+
+ base::win::RegKey reset_reg_key(HKEY_CURRENT_USER,
+ kTriggeredResetRegistryPath,
+ KEY_QUERY_VALUE | KEY_SET_VALUE);
engedy 2015/09/14 16:08:29 nit: I think KEY_SET_VALUE is not needed.
robertshield 2015/09/21 04:16:23 Done.
+ if (!reset_reg_key.Valid())
+ return;
+
+ int64 timestamp = 0;
+ if (reset_reg_key.ReadInt64(kTriggeredResetTimestamp, &timestamp) !=
+ ERROR_SUCCESS) {
+ return;
+ }
+
+ // A reset trigger time was found. Compare it to the trigger time stored
+ // in this profile. If different, reset the profile and persist the new
+ // time.
+ PrefService* pref_service = profile_->GetPrefs();
+ const int64 preference_timestamp =
+ pref_service->GetInt64(prefs::kLastProfileResetTimestamp);
+
+ if (profile_->IsNewProfile()) {
+ // New profiles should never be reset. Instead, persist the time stamp
+ // directly.
+ pref_service->SetInt64(prefs::kLastProfileResetTimestamp, timestamp);
+ } else if (timestamp != preference_timestamp) {
engedy 2015/09/14 16:08:29 Trying to think of any edge cases here. Any reason
robertshield 2015/09/21 04:16:23 I didn't do that since the machine clock could wel
engedy 2015/09/21 12:56:10 Fair enough, I just wanted to make sure this has b
robertshield 2015/09/21 22:04:30 Thanks!
+ DVLOG(1) << "Profile reset detected.";
+
+ has_reset_trigger_ = true;
+ UMA_HISTOGRAM_BOOLEAN("Profile.TriggeredReset", true);
engedy 2015/09/14 16:08:29 I think it could be more useful to record a histog
Alexei Svitkine (slow) 2015/09/14 17:05:43 Agree.
robertshield 2015/09/21 04:16:23 Ok, figured we'd have this reference value implici
robertshield 2015/09/21 04:16:23 Acknowledged.
+
+ if (reset_reg_key.ReadValue(kTriggeredResetToolName, &tool_name_) !=
+ ERROR_SUCCESS) {
+ DVLOG(1) << "Failed to read triggered profile reset tool name.";
engedy 2015/09/14 16:08:29 I know this is a edge case, but wouldn't it be bet
robertshield 2015/09/21 04:16:23 I had planned to have a default placeholder of "A
engedy 2015/09/21 12:56:10 Sounds good to me.
robertshield 2015/09/21 22:04:30 Acknowledged.
+ } else if (tool_name_.length() > kMaxToolNameLength) {
+ tool_name_.resize(kMaxToolNameLength);
+ }
+
+ pref_service->SetInt64(prefs::kLastProfileResetTimestamp, timestamp);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698