xref: /aosp_15_r20/external/libchrome/base/base_paths_android.h (revision 635a864187cb8b6c713ff48b7e790a6b21769273)
1*635a8641SAndroid Build Coastguard Worker // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2*635a8641SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be
3*635a8641SAndroid Build Coastguard Worker // found in the LICENSE file.
4*635a8641SAndroid Build Coastguard Worker 
5*635a8641SAndroid Build Coastguard Worker #ifndef BASE_BASE_PATHS_ANDROID_H_
6*635a8641SAndroid Build Coastguard Worker #define BASE_BASE_PATHS_ANDROID_H_
7*635a8641SAndroid Build Coastguard Worker 
8*635a8641SAndroid Build Coastguard Worker // This file declares Android-specific path keys for the base module.
9*635a8641SAndroid Build Coastguard Worker // These can be used with the PathService to access various special
10*635a8641SAndroid Build Coastguard Worker // directories and files.
11*635a8641SAndroid Build Coastguard Worker 
12*635a8641SAndroid Build Coastguard Worker namespace base {
13*635a8641SAndroid Build Coastguard Worker 
14*635a8641SAndroid Build Coastguard Worker enum {
15*635a8641SAndroid Build Coastguard Worker   PATH_ANDROID_START = 300,
16*635a8641SAndroid Build Coastguard Worker 
17*635a8641SAndroid Build Coastguard Worker   DIR_ANDROID_APP_DATA,  // Directory where to put Android app's data.
18*635a8641SAndroid Build Coastguard Worker   DIR_ANDROID_EXTERNAL_STORAGE,  // Android external storage directory.
19*635a8641SAndroid Build Coastguard Worker 
20*635a8641SAndroid Build Coastguard Worker   PATH_ANDROID_END
21*635a8641SAndroid Build Coastguard Worker };
22*635a8641SAndroid Build Coastguard Worker 
23*635a8641SAndroid Build Coastguard Worker }  // namespace base
24*635a8641SAndroid Build Coastguard Worker 
25*635a8641SAndroid Build Coastguard Worker #endif  // BASE_BASE_PATHS_ANDROID_H_
26