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

Side by Side Diff: base/base_paths.cc

Issue 8825: Begin the first small step towards using FilePath everywhere: (Closed)
Patch Set: works on windows Created 12 years, 1 month 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
« no previous file with comments | « no previous file | base/base_paths_linux.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) 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"
6 6
7 #include "base/file_path.h"
7 #include "base/file_util.h" 8 #include "base/file_util.h"
8 #include "base/path_service.h" 9 #include "base/path_service.h"
9 10
10 namespace base { 11 namespace base {
11 12
12 bool PathProvider(int key, std::wstring* result) { 13 bool PathProvider(int key, std::wstring* result) {
13 // NOTE: DIR_CURRENT is a special cased in PathService::Get 14 // NOTE: DIR_CURRENT is a special cased in PathService::Get
14 15
15 std::wstring cur; 16 FilePath cur;
16 switch (key) { 17 switch (key) {
17 case base::DIR_EXE: 18 case base::DIR_EXE:
18 PathService::Get(base::FILE_EXE, &cur); 19 PathService::Get(base::FILE_EXE, &cur);
19 file_util::TrimFilename(&cur); 20 cur = cur.DirName();
20 break; 21 break;
21 case base::DIR_MODULE: 22 case base::DIR_MODULE:
22 PathService::Get(base::FILE_MODULE, &cur); 23 PathService::Get(base::FILE_MODULE, &cur);
23 file_util::TrimFilename(&cur); 24 cur = cur.DirName();
24 break; 25 break;
25 case base::DIR_TEMP: 26 case base::DIR_TEMP:
26 if (!file_util::GetTempDir(&cur)) 27 if (!file_util::GetTempDir(&cur))
27 return false; 28 return false;
28 break; 29 break;
29 default: 30 default:
30 return false; 31 return false;
31 } 32 }
32 33
33 result->swap(cur); 34 *result = cur.ToWStringHack();
34 return true; 35 return true;
35 } 36 }
36 37
37 } // namespace base 38 } // namespace base
38 39
OLDNEW
« no previous file with comments | « no previous file | base/base_paths_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698