| Index: chromeos/dbus/fake_shill_profile_client.cc
|
| diff --git a/chromeos/dbus/fake_shill_profile_client.cc b/chromeos/dbus/fake_shill_profile_client.cc
|
| index 66dada6aaee5ee9855357d9c260122634db95977..55579eebde54ad39042bc8e6e53edca08e31e2e5 100644
|
| --- a/chromeos/dbus/fake_shill_profile_client.cc
|
| +++ b/chromeos/dbus/fake_shill_profile_client.cc
|
| @@ -41,7 +41,7 @@ FakeShillProfileClient::FakeShillProfileClient() {
|
| }
|
|
|
| FakeShillProfileClient::~FakeShillProfileClient() {
|
| - STLDeleteValues(&profiles_);
|
| + base::STLDeleteValues(&profiles_);
|
| }
|
|
|
| void FakeShillProfileClient::Init(dbus::Bus* bus) {
|
| @@ -240,7 +240,7 @@ bool FakeShillProfileClient::GetService(const std::string& service_path,
|
| }
|
|
|
| void FakeShillProfileClient::ClearProfiles() {
|
| - STLDeleteValues(&profiles_);
|
| + base::STLDeleteValues(&profiles_);
|
| }
|
|
|
| FakeShillProfileClient::ProfileProperties* FakeShillProfileClient::GetProfile(
|
|
|