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

Side by Side Diff: base/base_paths.h

Issue 7518032: Android's paths and message loop implementation with JNI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dependence again. Created 9 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 // This file declares path keys for the base module. These can be used with 9 // This file declares path keys for the base module. These can be used with
10 // the PathService to access various special directories and files. 10 // the PathService to access various special directories and files.
(...skipping 22 matching lines...) Expand all
33 DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful 33 DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful
34 // for tests that need to locate various resources. It 34 // for tests that need to locate various resources. It
35 // should not be used outside of test code. 35 // should not be used outside of test code.
36 #if defined(OS_POSIX) 36 #if defined(OS_POSIX)
37 DIR_CACHE, // Directory where to put cache data. Note this is 37 DIR_CACHE, // Directory where to put cache data. Note this is
38 // *not* where the browser cache lives, but the 38 // *not* where the browser cache lives, but the
39 // browser cache can be a subdirectory. 39 // browser cache can be a subdirectory.
40 // This is $XDG_CACHE_HOME on Linux and 40 // This is $XDG_CACHE_HOME on Linux and
41 // ~/Library/Caches on Mac. 41 // ~/Library/Caches on Mac.
42 #endif 42 #endif
43 #if defined(OS_ANDROID)
44 DIR_ANDROID_APP_DATA, // Directory where to put android app's data.
45 #endif
43 46
44 PATH_END 47 PATH_END
45 }; 48 };
46 49
47 } // namespace base 50 } // namespace base
48 51
49 #endif // BASE_BASE_PATHS_H_ 52 #endif // BASE_BASE_PATHS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698