| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ |
| 7 |
| 8 namespace arc { |
| 9 |
| 10 // The minimum battery level to start the migration. |
| 11 constexpr double kMigrationMinimumBatteryPercent = 30; |
| 12 |
| 13 // The minimum size of available space to start the migration. (10MB) |
| 14 constexpr int64_t kMigrationMinimumAvailableStorage = 10LL * 1024 * 1024; |
| 15 |
| 16 } // namespace arc |
| 17 |
| 18 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_CONSTANTS_H_ |
| OLD | NEW |