1*6777b538SAndroid Build Coastguard Worker // Copyright 2012 The Chromium Authors 2*6777b538SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 3*6777b538SAndroid Build Coastguard Worker // found in the LICENSE file. 4*6777b538SAndroid Build Coastguard Worker 5*6777b538SAndroid Build Coastguard Worker #ifndef BASE_BASE_PATHS_POSIX_H_ 6*6777b538SAndroid Build Coastguard Worker #define BASE_BASE_PATHS_POSIX_H_ 7*6777b538SAndroid Build Coastguard Worker 8*6777b538SAndroid Build Coastguard Worker // This file declares windows-specific path keys for the base module. 9*6777b538SAndroid Build Coastguard Worker // These can be used with the PathService to access various special 10*6777b538SAndroid Build Coastguard Worker // directories and files. 11*6777b538SAndroid Build Coastguard Worker 12*6777b538SAndroid Build Coastguard Worker namespace base { 13*6777b538SAndroid Build Coastguard Worker 14*6777b538SAndroid Build Coastguard Worker enum { 15*6777b538SAndroid Build Coastguard Worker PATH_POSIX_START = 400, 16*6777b538SAndroid Build Coastguard Worker 17*6777b538SAndroid Build Coastguard Worker DIR_CACHE, // Directory for the system users where applications store cache 18*6777b538SAndroid Build Coastguard Worker // data in subdirectories. Note this is *not* where the browser 19*6777b538SAndroid Build Coastguard Worker // cache lives, but the browser cache can be a subdirectory. This 20*6777b538SAndroid Build Coastguard Worker // is $XDG_CACHE_HOME on Linux and 21*6777b538SAndroid Build Coastguard Worker // ~/Library/Caches on Mac. 22*6777b538SAndroid Build Coastguard Worker 23*6777b538SAndroid Build Coastguard Worker PATH_POSIX_END 24*6777b538SAndroid Build Coastguard Worker }; 25*6777b538SAndroid Build Coastguard Worker 26*6777b538SAndroid Build Coastguard Worker } // namespace base 27*6777b538SAndroid Build Coastguard Worker 28*6777b538SAndroid Build Coastguard Worker #endif // BASE_BASE_PATHS_POSIX_H_ 29