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

Unified Diff: chrome/browser/importer/ie_importer_test_registry_overrider_win.cc

Issue 18501013: Move most importer code to chrome/utility/importer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: another gyp attempt Created 7 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: chrome/browser/importer/ie_importer_test_registry_overrider_win.cc
diff --git a/chrome/browser/importer/ie_importer_test_registry_overrider_win.cc b/chrome/browser/importer/ie_importer_test_registry_overrider_win.cc
deleted file mode 100644
index 7d1dcf41adfcd848fd9bc0a76ba95914531dde43..0000000000000000000000000000000000000000
--- a/chrome/browser/importer/ie_importer_test_registry_overrider_win.cc
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright (c) 2013 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/importer/ie_importer_test_registry_overrider_win.h"
-
-#include <windows.h>
-
-#include <string>
-
-#include "base/environment.h"
-#include "base/guid.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/strings/utf_string_conversions.h"
-#include "base/win/registry.h"
-
-namespace {
-
-// The key to which a random subkey will be appended. This key itself will never
-// be deleted.
-const wchar_t kTestHKCUOverrideKeyPrefix[] = L"SOFTWARE\\Chromium Unit Tests\\";
-const char kTestHKCUOverrideEnvironmentVariable[] =
- "IE_IMPORTER_TEST_OVERRIDE_HKCU";
-
-// Reads the environment variable set by a previous call to
-// SetTestRegistryOverride() into |key| if it exists and |key| is not NULL.
-// Returns true if the variable was successfully read.
-bool GetTestKeyFromEnvironment(base::string16* key) {
- scoped_ptr<base::Environment> env(base::Environment::Create());
- std::string value;
- bool result = env->GetVar(kTestHKCUOverrideEnvironmentVariable, &value);
- if (result)
- *key = UTF8ToUTF16(value);
- return result;
-}
-
-} // namespace
-
-////////////////////////////////////////////////////////////////////////////////
-// IEImporterTestRegistryOverrider, public:
-
-IEImporterTestRegistryOverrider::IEImporterTestRegistryOverrider()
- : temporary_key_(kTestHKCUOverrideKeyPrefix +
- UTF8ToUTF16(base::GenerateGUID())) {
- DCHECK(!GetTestKeyFromEnvironment(NULL));
-
- scoped_ptr<base::Environment> env(base::Environment::Create());
- bool success = env->SetVar(kTestHKCUOverrideEnvironmentVariable,
- UTF16ToUTF8(temporary_key_));
- DCHECK(success);
-}
-
-IEImporterTestRegistryOverrider::~IEImporterTestRegistryOverrider() {
- base::win::RegKey reg_key(HKEY_CURRENT_USER, temporary_key_.c_str(),
- KEY_ALL_ACCESS);
- DCHECK(reg_key.Valid());
- reg_key.DeleteKey(L"");
-
- scoped_ptr<base::Environment> env(base::Environment::Create());
- bool success = env->UnSetVar(kTestHKCUOverrideEnvironmentVariable);
- DCHECK(success);
-}
-
-// static
-base::string16 IEImporterTestRegistryOverrider::GetTestRegistryOverride() {
- base::string16 key;
- if (!GetTestKeyFromEnvironment(&key))
- return string16();
- return key;
-}
« no previous file with comments | « chrome/browser/importer/ie_importer_test_registry_overrider_win.h ('k') | chrome/browser/importer/ie_importer_unittest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698