Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: chromeos/dbus/cros_disks_client.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/chromeos_test_utils.cc ('k') | chromeos/system/name_value_pairs_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « chromeos/chromeos_test_utils.cc ('k') | chromeos/system/name_value_pairs_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698