1 // Copyright (c) 2013 The Chromium OS 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 CONSTANTS_CRYPTOHOME_H_ 6 #define CONSTANTS_CRYPTOHOME_H_ 7 8 #include <stdint.h> 9 10 namespace cryptohome { 11 12 // Cleanup is trigerred if the amount of free disk space goes below this value. 13 const int64_t kMinFreeSpaceInBytes = 512 * 1LL << 20; 14 15 } // namespace cryptohome 16 17 #endif // CONSTANTS_CRYPTOHOME_H_ 18