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

Side by Side Diff: base/base_paths.h

Issue 10867020: Add DIR_ANDROID_EXTERNAL_STORAGE to base/base_path.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Restrict to Android only. Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « base/android/path_utils.cc ('k') | base/base_paths_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 BASE_BASE_PATHS_H_ 5 #ifndef BASE_BASE_PATHS_H_
6 #define BASE_BASE_PATHS_H_ 6 #define BASE_BASE_PATHS_H_
7 7
8 // This file declares path keys for the base module. These can be used with 8 // This file declares path keys for the base module. These can be used with
9 // the PathService to access various special directories and files. 9 // the PathService to access various special directories and files.
10 10
(...skipping 24 matching lines...) Expand all
35 // for tests that need to locate various resources. It 35 // for tests that need to locate various resources. It
36 // should not be used outside of test code. 36 // should not be used outside of test code.
37 #if defined(OS_POSIX) 37 #if defined(OS_POSIX)
38 DIR_CACHE, // Directory where to put cache data. Note this is 38 DIR_CACHE, // Directory where to put cache data. Note this is
39 // *not* where the browser cache lives, but the 39 // *not* where the browser cache lives, but the
40 // browser cache can be a subdirectory. 40 // browser cache can be a subdirectory.
41 // This is $XDG_CACHE_HOME on Linux and 41 // This is $XDG_CACHE_HOME on Linux and
42 // ~/Library/Caches on Mac. 42 // ~/Library/Caches on Mac.
43 DIR_HOME, // $HOME on POSIX-like systems. 43 DIR_HOME, // $HOME on POSIX-like systems.
44 #endif 44 #endif
45 #if defined(OS_ANDROID)
46 DIR_ANDROID_EXTERNAL_STORAGE, // Android external storage directory.
47 #endif
45 48
46 PATH_END 49 PATH_END
47 }; 50 };
48 51
49 } // namespace base 52 } // namespace base
50 53
51 #endif // BASE_BASE_PATHS_H_ 54 #endif // BASE_BASE_PATHS_H_
OLDNEW
« no previous file with comments | « base/android/path_utils.cc ('k') | base/base_paths_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698