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