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

Side by Side Diff: base/base_paths.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: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #include "base/base_paths.h" 5 #include "base/base_paths.h"
gab 2012/09/13 23:16:50 All of the base_paths*.cc header listed #include "
6
7 #include "base/file_path.h" 6 #include "base/file_path.h"
8 #include "base/file_util.h" 7 #include "base/file_util.h"
9 #include "base/path_service.h" 8 #include "base/path_service.h"
10 9
11 namespace base { 10 namespace base {
12 11
13 bool PathProvider(int key, FilePath* result) { 12 bool PathProvider(int key, FilePath* result) {
14 // NOTE: DIR_CURRENT is a special cased in PathService::Get 13 // NOTE: DIR_CURRENT is a special cased in PathService::Get
15 14
16 FilePath cur; 15 FilePath cur;
(...skipping 12 matching lines...) Expand all
29 break; 28 break;
30 default: 29 default:
31 return false; 30 return false;
32 } 31 }
33 32
34 *result = cur; 33 *result = cur;
35 return true; 34 return true;
36 } 35 }
37 36
38 } // namespace base 37 } // namespace base
OLDNEW
« base/base_paths.h ('K') | « base/base_paths.h ('k') | base/base_paths_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698