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

Side by Side Diff: chrome/browser/extensions/api/instance_id/instance_id_api.cc

Issue 1088593004: Add the IDL for chrome.instanceID API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync Created 5 years, 8 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698