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

Unified Diff: chromeos/dbus/fake_shill_service_client.cc

Issue 2229383003: chromeos: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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/dbus/fake_shill_profile_client.cc ('k') | chromeos/dbus/nfc_client_helpers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_shill_service_client.cc
diff --git a/chromeos/dbus/fake_shill_service_client.cc b/chromeos/dbus/fake_shill_service_client.cc
index fb68fe4af561cba61da6e951e1cce000d8871b78..f41a9f73ed7ae2215b247d3a31bb3769fd90f3b3 100644
--- a/chromeos/dbus/fake_shill_service_client.cc
+++ b/chromeos/dbus/fake_shill_service_client.cc
@@ -55,8 +55,8 @@ FakeShillServiceClient::FakeShillServiceClient() : weak_ptr_factory_(this) {
}
FakeShillServiceClient::~FakeShillServiceClient() {
- STLDeleteContainerPairSecondPointers(
- observer_list_.begin(), observer_list_.end());
+ base::STLDeleteContainerPairSecondPointers(observer_list_.begin(),
+ observer_list_.end());
}
@@ -604,7 +604,7 @@ void FakeShillServiceClient::ContinueConnect(const std::string& service_path) {
return;
}
- if (ContainsKey(connect_behavior_, service_path)) {
+ if (base::ContainsKey(connect_behavior_, service_path)) {
const base::Closure& custom_connect_behavior =
connect_behavior_[service_path];
VLOG(1) << "Running custom connect behavior for " << service_path;
« no previous file with comments | « chromeos/dbus/fake_shill_profile_client.cc ('k') | chromeos/dbus/nfc_client_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698