| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 // Unpacks the crx file of the kiosk app and validates its signature. | 36 // Unpacks the crx file of the kiosk app and validates its signature. |
| 37 class KioskExternalUpdateValidator | 37 class KioskExternalUpdateValidator |
| 38 : public extensions::SandboxedUnpackerClient { | 38 : public extensions::SandboxedUnpackerClient { |
| 39 public: | 39 public: |
| 40 KioskExternalUpdateValidator( | 40 KioskExternalUpdateValidator( |
| 41 const scoped_refptr<base::SequencedTaskRunner>& backend_task_runner, | 41 const scoped_refptr<base::SequencedTaskRunner>& backend_task_runner, |
| 42 const std::string& app_id, | 42 const std::string& app_id, |
| 43 const base::FilePath& crx_path, | 43 const base::FilePath& crx_path, |
| 44 const std::string& crx_hash, |
| 44 const base::FilePath& crx_unpack_dir, | 45 const base::FilePath& crx_unpack_dir, |
| 45 const base::WeakPtr<KioskExternalUpdateValidatorDelegate>& delegate); | 46 const base::WeakPtr<KioskExternalUpdateValidatorDelegate>& delegate); |
| 46 | 47 |
| 47 // Starts validating the external crx file. | 48 // Starts validating the external crx file. |
| 48 void Start(); | 49 void Start(); |
| 49 | 50 |
| 50 private: | 51 private: |
| 51 virtual ~KioskExternalUpdateValidator(); | 52 virtual ~KioskExternalUpdateValidator(); |
| 52 | 53 |
| 53 // SandboxedUnpackerClient overrides. | 54 // SandboxedUnpackerClient overrides. |
| 54 virtual void OnUnpackFailure(const base::string16& error_message) override; | 55 virtual void OnUnpackFailure(const base::string16& error_message) override; |
| 55 virtual void OnUnpackSuccess(const base::FilePath& temp_dir, | 56 virtual void OnUnpackSuccess(const base::FilePath& temp_dir, |
| 56 const base::FilePath& extension_dir, | 57 const base::FilePath& extension_dir, |
| 57 const base::DictionaryValue* original_manifest, | 58 const base::DictionaryValue* original_manifest, |
| 58 const extensions::Extension* extension, | 59 const extensions::Extension* extension, |
| 59 const SkBitmap& install_icon) override; | 60 const SkBitmap& install_icon) override; |
| 60 | 61 |
| 61 // Task runner for executing file I/O tasks. | 62 // Task runner for executing file I/O tasks. |
| 62 const scoped_refptr<base::SequencedTaskRunner> backend_task_runner_; | 63 const scoped_refptr<base::SequencedTaskRunner> backend_task_runner_; |
| 63 std::string app_id_; | 64 std::string app_id_; |
| 64 | 65 |
| 65 // The directory where the external crx file resides. | 66 // The directory where the external crx file resides. |
| 66 base::FilePath crx_dir_; | 67 base::FilePath crx_dir_; |
| 68 |
| 69 // Hash sum of the crx file. |
| 70 std::string crx_hash_; |
| 71 |
| 67 // The temporary directory used by SandBoxedUnpacker for unpacking extensions. | 72 // The temporary directory used by SandBoxedUnpacker for unpacking extensions. |
| 68 const base::FilePath crx_unpack_dir_; | 73 const base::FilePath crx_unpack_dir_; |
| 69 | 74 |
| 70 base::WeakPtr<KioskExternalUpdateValidatorDelegate> delegate_; | 75 base::WeakPtr<KioskExternalUpdateValidatorDelegate> delegate_; |
| 71 | 76 |
| 72 DISALLOW_COPY_AND_ASSIGN(KioskExternalUpdateValidator); | 77 DISALLOW_COPY_AND_ASSIGN(KioskExternalUpdateValidator); |
| 73 }; | 78 }; |
| 74 | 79 |
| 75 } // namespace chromeos | 80 } // namespace chromeos |
| 76 | 81 |
| 77 #endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ | 82 #endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ |
| OLD | NEW |