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

Side by Side Diff: components/gcm_driver/instance_id/instance_id_android.cc

Issue 1096983002: Update usages of std::map to use ScopedPtrMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@passwordmanager-scopedmemory
Patch Set: Rebase. Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/gcm_driver/instance_id/instance_id_android.h" 5 #include "components/gcm_driver/instance_id/instance_id_android.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h"
8 9
9 namespace instance_id { 10 namespace instance_id {
10 11
11 // static 12 // static
12 InstanceID* InstanceID::Create(const std::string& app_id, 13 scoped_ptr<InstanceID> InstanceID::Create(const std::string& app_id,
13 gcm::GCMDriver* gcm_driver) { 14 gcm::GCMDriver* gcm_driver) {
14 return new InstanceIDAndroid(app_id); 15 return make_scoped_ptr(new InstanceIDAndroid(app_id));
15 } 16 }
16 17
17 InstanceIDAndroid::InstanceIDAndroid(const std::string& app_id) 18 InstanceIDAndroid::InstanceIDAndroid(const std::string& app_id)
18 : InstanceID(app_id) { 19 : InstanceID(app_id) {
19 } 20 }
20 21
21 InstanceIDAndroid::~InstanceIDAndroid() { 22 InstanceIDAndroid::~InstanceIDAndroid() {
22 } 23 }
23 24
24 void InstanceIDAndroid::GetID(const GetIDCallback& callback) { 25 void InstanceIDAndroid::GetID(const GetIDCallback& callback) {
(...skipping 17 matching lines...) Expand all
42 const std::string& scope, 43 const std::string& scope,
43 const DeleteTokenCallback& callback) { 44 const DeleteTokenCallback& callback) {
44 NOTIMPLEMENTED(); 45 NOTIMPLEMENTED();
45 } 46 }
46 47
47 void InstanceIDAndroid::DeleteID(const DeleteIDCallback& callback) { 48 void InstanceIDAndroid::DeleteID(const DeleteIDCallback& callback) {
48 NOTIMPLEMENTED(); 49 NOTIMPLEMENTED();
49 } 50 }
50 51
51 } // namespace instance_id 52 } // namespace instance_id
OLDNEW
« no previous file with comments | « components/gcm_driver/instance_id/instance_id.h ('k') | components/gcm_driver/instance_id/instance_id_driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698