| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_BROWSER_COMPONENT_UPDATER_STH_SET_COMPONENT_INSTALLER_H_ | 5 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_STH_SET_COMPONENT_INSTALLER_H_ |
| 6 #define CHROME_BROWSER_COMPONENT_UPDATER_STH_SET_COMPONENT_INSTALLER_H_ | 6 #define CHROME_BROWSER_COMPONENT_UPDATER_STH_SET_COMPONENT_INSTALLER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 const base::FilePath& install_dir) override; | 54 const base::FilePath& install_dir) override; |
| 55 bool VerifyInstallation(const base::DictionaryValue& manifest, | 55 bool VerifyInstallation(const base::DictionaryValue& manifest, |
| 56 const base::FilePath& install_dir) const override; | 56 const base::FilePath& install_dir) const override; |
| 57 void ComponentReady(const base::Version& version, | 57 void ComponentReady(const base::Version& version, |
| 58 const base::FilePath& install_dir, | 58 const base::FilePath& install_dir, |
| 59 std::unique_ptr<base::DictionaryValue> manifest) override; | 59 std::unique_ptr<base::DictionaryValue> manifest) override; |
| 60 base::FilePath GetRelativeInstallDir() const override; | 60 base::FilePath GetRelativeInstallDir() const override; |
| 61 void GetHash(std::vector<uint8_t>* hash) const override; | 61 void GetHash(std::vector<uint8_t>* hash) const override; |
| 62 std::string GetName() const override; | 62 std::string GetName() const override; |
| 63 update_client::InstallerAttributes GetInstallerAttributes() const override; | 63 update_client::InstallerAttributes GetInstallerAttributes() const override; |
| 64 std::vector<std::string> GetMimeTypes() const override; |
| 64 | 65 |
| 65 // Reads and parses the on-disk json. | 66 // Reads and parses the on-disk json. |
| 66 void LoadSTHsFromDisk(const base::FilePath& sths_file_path, | 67 void LoadSTHsFromDisk(const base::FilePath& sths_file_path, |
| 67 const base::Version& version); | 68 const base::Version& version); |
| 68 | 69 |
| 69 // Handle successful parsing of JSON by distributing the new STH. | 70 // Handle successful parsing of JSON by distributing the new STH. |
| 70 void OnJsonParseSuccess(const std::string& log_id, | 71 void OnJsonParseSuccess(const std::string& log_id, |
| 71 std::unique_ptr<base::Value> parsed_json); | 72 std::unique_ptr<base::Value> parsed_json); |
| 72 | 73 |
| 73 // STH parsing failed - do nothing. | 74 // STH parsing failed - do nothing. |
| 74 void OnJsonParseError(const std::string& log_id, const std::string& error); | 75 void OnJsonParseError(const std::string& log_id, const std::string& error); |
| 75 | 76 |
| 76 // The observer is not owned by this class, so the code creating an instance | 77 // The observer is not owned by this class, so the code creating an instance |
| 77 // of this class is expected to ensure the STHObserver lives as long as | 78 // of this class is expected to ensure the STHObserver lives as long as |
| 78 // this class does. Typically the observer provided will be a global. | 79 // this class does. Typically the observer provided will be a global. |
| 79 net::ct::STHObserver* sth_observer_; | 80 net::ct::STHObserver* sth_observer_; |
| 80 | 81 |
| 81 base::WeakPtrFactory<STHSetComponentInstallerTraits> weak_ptr_factory_; | 82 base::WeakPtrFactory<STHSetComponentInstallerTraits> weak_ptr_factory_; |
| 82 | 83 |
| 83 DISALLOW_COPY_AND_ASSIGN(STHSetComponentInstallerTraits); | 84 DISALLOW_COPY_AND_ASSIGN(STHSetComponentInstallerTraits); |
| 84 }; | 85 }; |
| 85 | 86 |
| 86 void RegisterSTHSetComponent(ComponentUpdateService* cus, | 87 void RegisterSTHSetComponent(ComponentUpdateService* cus, |
| 87 const base::FilePath& user_data_dir); | 88 const base::FilePath& user_data_dir); |
| 88 | 89 |
| 89 } // namespace component_updater | 90 } // namespace component_updater |
| 90 | 91 |
| 91 #endif // CHROME_BROWSER_COMPONENT_UPDATER_STH_SET_COMPONENT_INSTALLER_H_ | 92 #endif // CHROME_BROWSER_COMPONENT_UPDATER_STH_SET_COMPONENT_INSTALLER_H_ |
| OLD | NEW |