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

Unified Diff: base/base_paths_default_posix.cc

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: Try to fix git cl upload 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_default_posix.cc
diff --git a/base/base_paths_posix.cc b/base/base_paths_default_posix.cc
similarity index 91%
rename from base/base_paths_posix.cc
rename to base/base_paths_default_posix.cc
index 9be441d6d2616baa2458a3ed44b5ee1332db5963..8cf699591b35d3261e2b7693dd44b254f073b647 100644
--- a/base/base_paths_posix.cc
+++ b/base/base_paths_default_posix.cc
@@ -2,12 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "base/base_paths.h"
+// Defines base::PathProviderPosix which is the default path provider for paths
brettw 2012/09/14 22:10:06 Isn't this just used on Liunx then? I think base_p
gab 2012/09/16 03:13:51 I was saying the same thing, but grt@ didn't agree
+// on POSIX OSes that don't have their own base_paths_OS.cc implementation (i.e.
+// all POSIX OSes, but Mac and Android).
#include <ostream>
#include <string>
#include "build/build_config.h"
+#include "base/base_paths.h"
#include "base/environment.h"
#include "base/file_path.h"
#include "base/file_util.h"
@@ -99,6 +102,10 @@ bool PathProviderPosix(int key, FilePath* result) {
<< "Try running from your chromium/src directory.";
return false;
}
+ case base::DIR_USER_DESKTOP: {
+ *result = base::nix::GetXDGUserDirectory("DESKTOP", "Desktop");
+ return true;
+ }
case base::DIR_CACHE: {
scoped_ptr<base::Environment> env(base::Environment::Create());
FilePath cache_dir(base::nix::GetXDGDirectory(env.get(), "XDG_CACHE_HOME",
« no previous file with comments | « base/base_paths_android.cc ('k') | base/base_paths_mac.mm » ('j') | base/base_paths_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698