OLD | NEW |
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 Loading... |
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 |
OLD | NEW |