summaryrefslogtreecommitdiffstats
path: root/chrome/installer/util/test_app_registration_data.cc
blob: b370df3aa2e33aa8f4bb0349ef16c30a36dfcdf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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/installer/util/test_app_registration_data.h"

TestAppRegistrationData::TestAppRegistrationData() {
}

TestAppRegistrationData::~TestAppRegistrationData() {
}

base::string16 TestAppRegistrationData::GetAppGuid() const {
  return L"test_app_guid";
}

base::string16 TestAppRegistrationData::GetStateKey() const {
  return L"Software\\Chromium\\ClientState\\test_app_guid";
}

base::string16 TestAppRegistrationData::GetStateMediumKey() const {
  return L"Software\\Chromium\\ClientStateMedium\\test_app_guid";
}

base::string16 TestAppRegistrationData::GetVersionKey() const {
  return L"Software\\Chromium\\Clients\\test_app_guid";
}