OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/extensions/api/instance_id/instance_id_api.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "extensions/common/extension.h" |
| 9 |
| 10 namespace extensions { |
| 11 |
| 12 InstanceIDGetIDFunction::InstanceIDGetIDFunction() {} |
| 13 |
| 14 InstanceIDGetIDFunction::~InstanceIDGetIDFunction() {} |
| 15 |
| 16 bool InstanceIDGetIDFunction::RunAsync() { |
| 17 NOTIMPLEMENTED(); |
| 18 return false; |
| 19 } |
| 20 |
| 21 InstanceIDGetCreationTimeFunction::InstanceIDGetCreationTimeFunction() {} |
| 22 |
| 23 InstanceIDGetCreationTimeFunction::~InstanceIDGetCreationTimeFunction() {} |
| 24 |
| 25 bool InstanceIDGetCreationTimeFunction::RunAsync() { |
| 26 NOTIMPLEMENTED(); |
| 27 return false; |
| 28 } |
| 29 |
| 30 InstanceIDGetTokenFunction::InstanceIDGetTokenFunction() {} |
| 31 |
| 32 InstanceIDGetTokenFunction::~InstanceIDGetTokenFunction() {} |
| 33 |
| 34 bool InstanceIDGetTokenFunction::RunAsync() { |
| 35 NOTIMPLEMENTED(); |
| 36 return false; |
| 37 } |
| 38 |
| 39 InstanceIDDeleteTokenFunction::InstanceIDDeleteTokenFunction() {} |
| 40 |
| 41 InstanceIDDeleteTokenFunction::~InstanceIDDeleteTokenFunction() {} |
| 42 |
| 43 bool InstanceIDDeleteTokenFunction::RunAsync() { |
| 44 NOTIMPLEMENTED(); |
| 45 return false; |
| 46 } |
| 47 |
| 48 InstanceIDDeleteIDFunction::InstanceIDDeleteIDFunction() {} |
| 49 |
| 50 InstanceIDDeleteIDFunction::~InstanceIDDeleteIDFunction() {} |
| 51 |
| 52 bool InstanceIDDeleteIDFunction::RunAsync() { |
| 53 NOTIMPLEMENTED(); |
| 54 return false; |
| 55 } |
| 56 |
| 57 } // namespace extensions |
OLD | NEW |