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

Side by Side Diff: base/base_paths.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
« no previous file with comments | « base/android/path_utils_unittest.cc ('k') | base/base_paths_mac.mm » ('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_util.h" 7 #include "base/file_util.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 10
(...skipping 15 matching lines...) Expand all
26 case DIR_TEMP: 26 case DIR_TEMP:
27 if (!file_util::GetTempDir(&cur)) 27 if (!file_util::GetTempDir(&cur))
28 return false; 28 return false;
29 break; 29 break;
30 case DIR_TEST_DATA: 30 case DIR_TEST_DATA:
31 if (!PathService::Get(DIR_SOURCE_ROOT, &cur)) 31 if (!PathService::Get(DIR_SOURCE_ROOT, &cur))
32 return false; 32 return false;
33 cur = cur.Append(FILE_PATH_LITERAL("base")); 33 cur = cur.Append(FILE_PATH_LITERAL("base"));
34 cur = cur.Append(FILE_PATH_LITERAL("test")); 34 cur = cur.Append(FILE_PATH_LITERAL("test"));
35 cur = cur.Append(FILE_PATH_LITERAL("data")); 35 cur = cur.Append(FILE_PATH_LITERAL("data"));
36 if (!file_util::PathExists(cur)) // We don't want to create this. 36 if (!base::PathExists(cur)) // We don't want to create this.
37 return false; 37 return false;
38 break; 38 break;
39 default: 39 default:
40 return false; 40 return false;
41 } 41 }
42 42
43 *result = cur; 43 *result = cur;
44 return true; 44 return true;
45 } 45 }
46 46
47 } // namespace base 47 } // namespace base
OLDNEW
« no previous file with comments | « base/android/path_utils_unittest.cc ('k') | base/base_paths_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698