OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ |
| 6 #define CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ |
| 7 |
| 8 #include "chrome/installer/util/app_registration_data.h" |
| 9 |
| 10 class TestAppRegistrationData : public AppRegistrationData { |
| 11 public: |
| 12 TestAppRegistrationData(); |
| 13 ~TestAppRegistrationData() override; |
| 14 base::string16 GetAppGuid() const override; |
| 15 base::string16 GetStateKey() const override; |
| 16 base::string16 GetStateMediumKey() const override; |
| 17 base::string16 GetVersionKey() const override; |
| 18 }; |
| 19 |
| 20 #endif // CHROME_INSTALLER_UTIL_TEST_APP_REGISTRATION_DATA_H_ |
OLD | NEW |