summaryrefslogtreecommitdiffstats
path: root/chrome/installer/gcapi/gcapi_test_registry_overrider.cc
blob: be678a2a50f149a8f9c0022e1c44b8e78e67f509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 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/installer/gcapi/gcapi_test_registry_overrider.h"

#include "base/guid.h"
#include "base/strings/string16.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"

GCAPITestRegistryOverrider::GCAPITestRegistryOverrider() {
  // Override keys - this is undone during destruction.
  override_manager_.OverrideRegistry(HKEY_CURRENT_USER, L"hkcu_override");
  override_manager_.OverrideRegistry(HKEY_LOCAL_MACHINE, L"hklm_override");
}

GCAPITestRegistryOverrider::~GCAPITestRegistryOverrider() {
}