Index: chrome/browser/chrome_process_finder_win.cc |
diff --git a/chrome/browser/chrome_process_finder_win.cc b/chrome/browser/chrome_process_finder_win.cc |
index 93116af505c0badd2a220932cf1be9afccbcd855..1599dac781fd9ba4378738cd02831811a91ea701 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. |