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

Unified Diff: chromeos/dbus/fake_session_manager_client.cc

Issue 89243003: Move EmptyString, kWhitespace and the BOM to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « chrome_frame/test/test_with_web_server.h ('k') | chromeos/disks/disk_mount_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_session_manager_client.cc
diff --git a/chromeos/dbus/fake_session_manager_client.cc b/chromeos/dbus/fake_session_manager_client.cc
index 482d3a57c56615450870a151395bac78e88063bb..7445847d9db3b3f98f7b9fa3f804770b6ccf50be 100644
--- a/chromeos/dbus/fake_session_manager_client.cc
+++ b/chromeos/dbus/fake_session_manager_client.cc
@@ -148,7 +148,7 @@ const std::string& FakeSessionManagerClient::user_policy(
const std::string& username) const {
std::map<std::string, std::string>::const_iterator it =
user_policies_.find(username);
- return it == user_policies_.end() ? EmptyString() : it->second;
+ return it == user_policies_.end() ? base::EmptyString() : it->second;
}
void FakeSessionManagerClient::set_user_policy(const std::string& username,
@@ -161,7 +161,7 @@ const std::string& FakeSessionManagerClient::device_local_account_policy(
std::map<std::string, std::string>::const_iterator entry =
device_local_account_policy_.find(account_id);
return entry != device_local_account_policy_.end() ? entry->second
- : EmptyString();
+ : base::EmptyString();
}
void FakeSessionManagerClient::set_device_local_account_policy(
« no previous file with comments | « chrome_frame/test/test_with_web_server.h ('k') | chromeos/disks/disk_mount_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698