summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/cros_disks_client.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos/dbus/cros_disks_client.cc')
-rw-r--r--chromeos/dbus/cros_disks_client.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/dbus/cros_disks_client.cc b/chromeos/dbus/cros_disks_client.cc
index ea4687d..a7a4354 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;
}