Index: chromeos/dbus/cros_disks_client.cc |
diff --git a/chromeos/dbus/cros_disks_client.cc b/chromeos/dbus/cros_disks_client.cc |
index ea4687dbbe0eca4e310652898a55aab225f2d4c3..a7a43540c7d7bf6e2e582d7c00c4cd675fd780a9 100644 |
--- a/chromeos/dbus/cros_disks_client.cc |
+++ b/chromeos/dbus/cros_disks_client.cc |
@@ -456,7 +456,7 @@ class CrosDisksClientStubImpl : public CrosDisksClient { |
static MountError PerformFakeMount(const std::string& source_path, |
const base::FilePath& mounted_path) { |
// Check the source path exists. |
- if (!file_util::PathExists(base::FilePath::FromUTF8Unsafe(source_path))) { |
+ if (!base::PathExists(base::FilePath::FromUTF8Unsafe(source_path))) { |
DLOG(ERROR) << "Source does not exist at " << source_path; |
return MOUNT_ERROR_INVALID_PATH; |
} |