| 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;
|
|
|