Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Side by Side Diff: chrome/browser/chromeos/arc/arc_migration_constants.h

Issue 2968643002: Update minimum space for migration to 50MB (Closed)
Patch Set: Update minimum space for migration to 50MB Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698