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

Unified Diff: chromeos/dbus/shill_profile_client.cc

Issue 1454773002: Play better with C++11 library features from /chromeos (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: chromeos/dbus/shill_profile_client.cc
diff --git a/chromeos/dbus/shill_profile_client.cc b/chromeos/dbus/shill_profile_client.cc
index 638b92f64a4769e4c214305224e814d824951963..f965a29843b91ee719be940f492674c0d9e2f371 100644
--- a/chromeos/dbus/shill_profile_client.cc
+++ b/chromeos/dbus/shill_profile_client.cc
@@ -4,8 +4,10 @@
#include "chromeos/dbus/shill_profile_client.h"
+#include <map>
+#include <utility>
+
#include "base/bind.h"
-#include "base/containers/scoped_ptr_map.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/values.h"
@@ -57,8 +59,7 @@ class ShillProfileClientImpl : public ShillProfileClient {
void Init(dbus::Bus* bus) override { bus_ = bus; }
private:
- typedef base::ScopedPtrMap<std::string, scoped_ptr<ShillClientHelper>>
- HelperMap;
+ using HelperMap = std::map<std::string, scoped_ptr<ShillClientHelper>>;
// Returns the corresponding ShillClientHelper for the profile.
ShillClientHelper* GetHelper(const dbus::ObjectPath& profile_path);
@@ -76,7 +77,7 @@ ShillClientHelper* ShillProfileClientImpl::GetHelper(
const dbus::ObjectPath& profile_path) {
HelperMap::const_iterator it = helpers_.find(profile_path.value());
if (it != helpers_.end())
- return it->second;
+ return it->second.get();
// There is no helper for the profile, create it.
dbus::ObjectProxy* object_proxy =
@@ -84,7 +85,7 @@ ShillClientHelper* ShillProfileClientImpl::GetHelper(
scoped_ptr<ShillClientHelper> helper(new ShillClientHelper(object_proxy));
helper->MonitorPropertyChanged(shill::kFlimflamProfileInterface);
ShillClientHelper* helper_ptr = helper.get();
- helpers_.insert(profile_path.value(), helper.Pass());
+ helpers_[profile_path.value()] = std::move(helper);
return helper_ptr;
}
« no previous file with comments | « chromeos/dbus/shill_ipconfig_client.cc ('k') | chromeos/network/managed_network_configuration_handler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698