summaryrefslogtreecommitdiffstats
path: root/chromeos/disks/disk_mount_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos/disks/disk_mount_manager.cc')
-rw-r--r--chromeos/disks/disk_mount_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromeos/disks/disk_mount_manager.cc b/chromeos/disks/disk_mount_manager.cc
index 9580e74..a781107 100644
--- a/chromeos/disks/disk_mount_manager.cc
+++ b/chromeos/disks/disk_mount_manager.cc
@@ -588,7 +588,7 @@ class DiskMountManagerImpl : public DiskMountManager {
// Finds system path prefix from |system_path|.
const std::string& FindSystemPathPrefix(const std::string& system_path) {
if (system_path.empty())
- return EmptyString();
+ return base::EmptyString();
for (SystemPathPrefixSet::const_iterator it = system_path_prefixes_.begin();
it != system_path_prefixes_.end();
++it) {
@@ -596,7 +596,7 @@ class DiskMountManagerImpl : public DiskMountManager {
if (StartsWithASCII(system_path, prefix, true))
return prefix;
}
- return EmptyString();
+ return base::EmptyString();
}
// Mount event change observers.