| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 COMPONENTS_UPDATE_CLIENT_TEST_INSTALLER_H_ | 5 #ifndef COMPONENTS_UPDATE_CLIENT_TEST_INSTALLER_H_ |
| 6 #define COMPONENTS_UPDATE_CLIENT_TEST_INSTALLER_H_ | 6 #define COMPONENTS_UPDATE_CLIENT_TEST_INSTALLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 bool Install(const base::DictionaryValue& manifest, | 69 bool Install(const base::DictionaryValue& manifest, |
| 70 const base::FilePath& unpack_path) override; | 70 const base::FilePath& unpack_path) override; |
| 71 | 71 |
| 72 bool GetInstalledFile(const std::string& file, | 72 bool GetInstalledFile(const std::string& file, |
| 73 base::FilePath* installed_file) override; | 73 base::FilePath* installed_file) override; |
| 74 | 74 |
| 75 private: | 75 private: |
| 76 ~VersionedTestInstaller() override; | 76 ~VersionedTestInstaller() override; |
| 77 | 77 |
| 78 base::FilePath install_directory_; | 78 base::FilePath install_directory_; |
| 79 base::Version current_version_; | 79 Version current_version_; |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace update_client | 82 } // namespace update_client |
| 83 | 83 |
| 84 #endif // COMPONENTS_UPDATE_CLIENT_TEST_INSTALLER_H_ | 84 #endif // COMPONENTS_UPDATE_CLIENT_TEST_INSTALLER_H_ |
| OLD | NEW |