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

Unified Diff: components/gcm_driver/instance_id/instance_id_driver.h

Issue 1468013002: ScopedPtrMap -> std::map from /component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit 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: components/gcm_driver/instance_id/instance_id_driver.h
diff --git a/components/gcm_driver/instance_id/instance_id_driver.h b/components/gcm_driver/instance_id/instance_id_driver.h
index d2d9a4ffc4d4690c68ca133a90d87d40fc31e902..b7df4fce21e25d05f6cc6a730542793b81c8ec06 100644
--- a/components/gcm_driver/instance_id/instance_id_driver.h
+++ b/components/gcm_driver/instance_id/instance_id_driver.h
@@ -5,9 +5,9 @@
#ifndef COMPONENTS_GCM_DRIVER_INSTANCE_ID_INSTANCE_ID_DRIVER_H_
#define COMPONENTS_GCM_DRIVER_INSTANCE_ID_INSTANCE_ID_DRIVER_H_
+#include <map>
#include <string>
-#include "base/containers/scoped_ptr_map.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
@@ -43,7 +43,7 @@ class InstanceIDDriver {
private:
gcm::GCMDriver* gcm_driver_; // Not owned.
- base::ScopedPtrMap<std::string, scoped_ptr<InstanceID>> instance_id_map_;
+ std::map<std::string, scoped_ptr<InstanceID>> instance_id_map_;
DISALLOW_COPY_AND_ASSIGN(InstanceIDDriver);
};

Powered by Google App Engine
This is Rietveld 408576698