| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 const base::FilePath& crx_unpack_dir, | 44 const base::FilePath& crx_unpack_dir, |
| 45 const base::WeakPtr<KioskExternalUpdateValidatorDelegate>& delegate); | 45 const base::WeakPtr<KioskExternalUpdateValidatorDelegate>& delegate); |
| 46 | 46 |
| 47 // Starts validating the external crx file. | 47 // Starts validating the external crx file. |
| 48 void Start(); | 48 void Start(); |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 virtual ~KioskExternalUpdateValidator(); | 51 virtual ~KioskExternalUpdateValidator(); |
| 52 | 52 |
| 53 // SandboxedUnpackerClient overrides. | 53 // SandboxedUnpackerClient overrides. |
| 54 virtual void OnUnpackFailure(const base::string16& error_message) OVERRIDE; | 54 virtual void OnUnpackFailure(const base::string16& error_message) override; |
| 55 virtual void OnUnpackSuccess(const base::FilePath& temp_dir, | 55 virtual void OnUnpackSuccess(const base::FilePath& temp_dir, |
| 56 const base::FilePath& extension_dir, | 56 const base::FilePath& extension_dir, |
| 57 const base::DictionaryValue* original_manifest, | 57 const base::DictionaryValue* original_manifest, |
| 58 const extensions::Extension* extension, | 58 const extensions::Extension* extension, |
| 59 const SkBitmap& install_icon) OVERRIDE; | 59 const SkBitmap& install_icon) override; |
| 60 | 60 |
| 61 // Task runner for executing file I/O tasks. | 61 // Task runner for executing file I/O tasks. |
| 62 const scoped_refptr<base::SequencedTaskRunner> backend_task_runner_; | 62 const scoped_refptr<base::SequencedTaskRunner> backend_task_runner_; |
| 63 std::string app_id_; | 63 std::string app_id_; |
| 64 | 64 |
| 65 // The directory where the external crx file resides. | 65 // The directory where the external crx file resides. |
| 66 base::FilePath crx_dir_; | 66 base::FilePath crx_dir_; |
| 67 // The temporary directory used by SandBoxedUnpacker for unpacking extensions. | 67 // The temporary directory used by SandBoxedUnpacker for unpacking extensions. |
| 68 const base::FilePath crx_unpack_dir_; | 68 const base::FilePath crx_unpack_dir_; |
| 69 | 69 |
| 70 base::WeakPtr<KioskExternalUpdateValidatorDelegate> delegate_; | 70 base::WeakPtr<KioskExternalUpdateValidatorDelegate> delegate_; |
| 71 | 71 |
| 72 DISALLOW_COPY_AND_ASSIGN(KioskExternalUpdateValidator); | 72 DISALLOW_COPY_AND_ASSIGN(KioskExternalUpdateValidator); |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace chromeos | 75 } // namespace chromeos |
| 76 | 76 |
| 77 #endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ | 77 #endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATE_VALIDATOR_H_ |
| OLD | NEW |