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

Unified Diff: chrome/installer/gcapi/gcapi_reactivation.cc

Issue 9302035: Re-add source files to gyp config for gcapi_dll. Removing them seems to make VS2005 unhappy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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
« no previous file with comments | « chrome/installer/gcapi/gcapi_reactivation.h ('k') | chrome/installer/gcapi/gcapi_reactivation_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/gcapi/gcapi_reactivation.cc
diff --git a/chrome/installer/gcapi/gcapi_reactivation.cc b/chrome/installer/gcapi/gcapi_reactivation.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6755e2fc26256262653c8a40e31bb7b0c879d298
--- /dev/null
+++ b/chrome/installer/gcapi/gcapi_reactivation.cc
@@ -0,0 +1,77 @@
+// Copyright (c) 2012 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/installer/gcapi/gcapi_reactivation.h"
+
+#include "base/time.h"
+#include "base/win/registry.h"
+#include "chrome/installer/util/google_update_constants.h"
+
+using base::Time;
+using base::win::RegKey;
+
+namespace {
+const wchar_t kReactivationHistoryKey[] = L"reactivation";
+
+std::wstring GetReactivationHistoryKeyPath() {
+ std::wstring reactivation_path(google_update::kRegPathClientState);
+ reactivation_path += L"\\";
+ reactivation_path += google_update::kChromeUpgradeCode;
+ reactivation_path += L"\\";
+ reactivation_path += kReactivationHistoryKey;
+ return reactivation_path;
+}
+} // namespace
+
+bool HasBeenReactivatedByBrandCodes(
+ const std::vector<std::wstring>& brand_codes) {
+ bool success = false;
+
+ RegKey reactivation_key(HKEY_CURRENT_USER,
+ GetReactivationHistoryKeyPath().c_str(),
+ KEY_QUERY_VALUE);
+ if (reactivation_key.Valid()) {
+ std::vector<std::wstring>::const_iterator brand_iter(brand_codes.begin());
+ for (; brand_iter != brand_codes.end(); ++brand_iter) {
+ if (reactivation_key.HasValue(brand_iter->c_str())) {
+ success = true;
+ break;
+ }
+ }
+ }
+
+ return success;
+}
+
+bool SetReactivationBrandCode(const std::wstring& brand_code) {
+ bool success = false;
+
+ std::wstring path(google_update::kRegPathClientState);
+ path += L"\\";
+ path += google_update::kChromeUpgradeCode;
+
+ RegKey client_state_key(HKEY_CURRENT_USER, path.c_str(), KEY_SET_VALUE);
+ if (client_state_key.Valid()) {
+ success = client_state_key.WriteValue(
+ google_update::kRegRLZReactivationBrandField,
+ brand_code.c_str()) == ERROR_SUCCESS;
+ }
+
+ if (success) {
+ // Store this brand code in the reactivation history. Store it with a
+ // a currently un-used timestamp for future proofing.
+ RegKey reactivation_key(HKEY_CURRENT_USER,
+ GetReactivationHistoryKeyPath().c_str(),
+ KEY_WRITE);
+ if (reactivation_key.Valid()) {
+ int64 timestamp = Time::Now().ToInternalValue();
+ reactivation_key.WriteValue(brand_code.c_str(),
+ &timestamp,
+ sizeof(timestamp),
+ REG_QWORD);
+ }
+ }
+
+ return success;
+}
« no previous file with comments | « chrome/installer/gcapi/gcapi_reactivation.h ('k') | chrome/installer/gcapi/gcapi_reactivation_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698