| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ |
| 6 #define CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ | 6 #define CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ |
| 7 | 7 |
| 8 #include "chrome/installer/util/app_registration_data.h" | 8 #include "chrome/installer/util/app_registration_data.h" |
| 9 | 9 |
| 10 class TestAppRegistrationData : public AppRegistrationData { | 10 class TestAppRegistrationData : public AppRegistrationData { |
| 11 public: | 11 public: |
| 12 TestAppRegistrationData(); | 12 TestAppRegistrationData(); |
| 13 ~TestAppRegistrationData() override; | 13 ~TestAppRegistrationData() override; |
| 14 base::string16 GetAppGuid() const override; | |
| 15 base::string16 GetStateKey() const override; | 14 base::string16 GetStateKey() const override; |
| 16 base::string16 GetStateMediumKey() const override; | 15 base::string16 GetStateMediumKey() const override; |
| 17 base::string16 GetVersionKey() const override; | 16 base::string16 GetVersionKey() const override; |
| 18 }; | 17 }; |
| 19 | 18 |
| 20 #endif // CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ | 19 #endif // CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ |
| OLD | NEW |