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

Unified Diff: base/path_service.cc

Issue 177923007: Move AppendFile and *CurrentDirectory to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
« no previous file with comments | « base/native_library_win.cc ('k') | chrome/browser/chrome_process_finder_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/path_service.cc
diff --git a/base/path_service.cc b/base/path_service.cc
index f0a6a844158ddde0b2219c2b6d471f22f3b3e888..61488d6f75ff4acd8becef175e353a8496b6a421 100644
--- a/base/path_service.cc
+++ b/base/path_service.cc
@@ -187,7 +187,7 @@ bool PathService::Get(int key, FilePath* result) {
// special case the current directory because it can never be cached
if (key == base::DIR_CURRENT)
- return file_util::GetCurrentDirectory(result);
+ return base::GetCurrentDirectory(result);
Provider* provider = NULL;
{
« no previous file with comments | « base/native_library_win.cc ('k') | chrome/browser/chrome_process_finder_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698