1*6777b538SAndroid Build Coastguard Worker // Copyright 2023 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_IOS_H_ 6*6777b538SAndroid Build Coastguard Worker #define BASE_BASE_PATHS_IOS_H_ 7*6777b538SAndroid Build Coastguard Worker 8*6777b538SAndroid Build Coastguard Worker // This file declares iOS-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_IOS_START = 200, 16*6777b538SAndroid Build Coastguard Worker 17*6777b538SAndroid Build Coastguard Worker DIR_APP_DATA, // ~/Library/Application Support 18*6777b538SAndroid Build Coastguard Worker // Data for specific applications is stored in subdirectories. 19*6777b538SAndroid Build Coastguard Worker 20*6777b538SAndroid Build Coastguard Worker PATH_IOS_END 21*6777b538SAndroid Build Coastguard Worker }; 22*6777b538SAndroid Build Coastguard Worker 23*6777b538SAndroid Build Coastguard Worker } // namespace base 24*6777b538SAndroid Build Coastguard Worker 25*6777b538SAndroid Build Coastguard Worker #endif // BASE_BASE_PATHS_IOS_H_ 26