Index: chrome/browser/chromeos/system/input_device_settings.cc |
diff --git a/chrome/browser/chromeos/system/input_device_settings.cc b/chrome/browser/chromeos/system/input_device_settings.cc |
index d937267fd9782e6a4a3a4712f33d6d5fa06f3d9f..dec6b5f15787f5cad64c49b04eb37fcfb30e9154 100644 |
--- a/chrome/browser/chromeos/system/input_device_settings.cc |
+++ b/chrome/browser/chromeos/system/input_device_settings.cc |
@@ -30,7 +30,7 @@ const char kMouseControl[] = "/opt/google/mouse/mousecontrol"; |
bool ScriptExists(const std::string& script) { |
DCHECK(content::BrowserThread::GetBlockingPool()->RunsTasksOnCurrentThread()); |
- return file_util::PathExists(base::FilePath(script)); |
+ return base::PathExists(base::FilePath(script)); |
} |
// Executes the input control script asynchronously, if it exists. |