summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_process_finder_win.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-11 20:59:02 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-11 20:59:02 +0000
commit37b3c199da23208121a946491ce749bafeb573c2 (patch)
tree1f12a473162863cd3c2507f08f53ec910e2da57d /chrome/browser/chrome_process_finder_win.cc
parentce4ac5324890624e6688f7bb732a4c7ab701c2b4 (diff)
downloadchromium_src-37b3c199da23208121a946491ce749bafeb573c2.zip
chromium_src-37b3c199da23208121a946491ce749bafeb573c2.tar.gz
chromium_src-37b3c199da23208121a946491ce749bafeb573c2.tar.bz2
Move AppendFile and *CurrentDirectory to the base namespace.
This moves AppendFile, GetCurrentDirectory, and SetCurrentDirectory to the base namespace. TBR=jam Review URL: https://codereview.chromium.org/177923007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256309 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_process_finder_win.cc')
-rw-r--r--chrome/browser/chrome_process_finder_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chrome_process_finder_win.cc b/chrome/browser/chrome_process_finder_win.cc
index 93116af..1599dac 100644
--- a/chrome/browser/chrome_process_finder_win.cc
+++ b/chrome/browser/chrome_process_finder_win.cc
@@ -164,7 +164,7 @@ NotifyChromeResult AttemptToNotifyRunningChrome(HWND remote_window,
// Format is "START\0<<<current directory>>>\0<<<commandline>>>".
std::wstring to_send(L"START\0", 6); // want the NULL in the string.
base::FilePath cur_dir;
- if (!file_util::GetCurrentDirectory(&cur_dir))
+ if (!base::GetCurrentDirectory(&cur_dir))
return NOTIFY_FAILED;
to_send.append(cur_dir.value());
to_send.append(L"\0", 1); // Null separator.