| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_ARC_ARC_MIGRATION_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace arc { | 8 namespace arc { |
| 9 | 9 |
| 10 // The minimum battery level to start the migration. | 10 // The minimum battery level to start the migration. |
| 11 constexpr double kMigrationMinimumBatteryPercent = 30; | 11 constexpr double kMigrationMinimumBatteryPercent = 30; |
| 12 | 12 |
| 13 // The minimum size of available space to start the migration. (10MB) | 13 // The minimum size of available space to start the migration. (50MB) |
| 14 constexpr int64_t kMigrationMinimumAvailableStorage = 10LL * 1024 * 1024; | 14 constexpr int64_t kMigrationMinimumAvailableStorage = 50LL * 1024 * 1024; |
| 15 | 15 |
| 16 } // namespace arc | 16 } // namespace arc |
| 17 | 17 |
| 18 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ | 18 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ |
| OLD | NEW |