Index: chrome/installer/util/test_app_registration_data.cc |
diff --git a/chrome/installer/util/test_app_registration_data.cc b/chrome/installer/util/test_app_registration_data.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a2bb7e780302e93f57a5a328f1d3a7d0a05b50e5 |
--- /dev/null |
+++ b/chrome/installer/util/test_app_registration_data.cc |
@@ -0,0 +1,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"; |
+} |