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

Unified Diff: base/base_paths.h

Issue 10910209: Add new PathService paths for Windows' All Users Desktop and Quick Launch folders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile post-merge Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: base/base_paths.h
diff --git a/base/base_paths.h b/base/base_paths.h
index 39edd164c38fbeb45a3579ab189d15df54f34de7..ac4c6960df97013881dd16b883a45e52f1fcb4d4 100644
--- a/base/base_paths.h
+++ b/base/base_paths.h
@@ -34,17 +34,7 @@ enum BasePathKey {
DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful
// for tests that need to locate various resources. It
// should not be used outside of test code.
-#if defined(OS_POSIX)
grt (UTC plus 2) 2012/09/14 15:35:16 these paths are valid for all POSIX-like systems,
gab 2012/09/14 18:10:06 I agree; following the current convention in path_
- DIR_CACHE, // Directory where to put cache data. Note this is
- // *not* where the browser cache lives, but the
- // browser cache can be a subdirectory.
- // This is $XDG_CACHE_HOME on Linux and
- // ~/Library/Caches on Mac.
- DIR_HOME, // $HOME on POSIX-like systems.
-#endif
-#if defined(OS_ANDROID)
- DIR_ANDROID_EXTERNAL_STORAGE, // Android external storage directory.
-#endif
+ DIR_USER_DESKTOP, // Directory that correspond to the current user's desktop.
grt (UTC plus 2) 2012/09/14 15:35:16 "The current user's desktop." (the above would ne
gab 2012/09/14 18:10:06 Done.
PATH_END
};

Powered by Google App Engine
This is Rietveld 408576698