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

Unified Diff: chrome/browser/extensions/api/instance_id/instance_id_api.h

Issue 1088593004: Add the IDL for chrome.instanceID API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync again 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/instance_id/instance_id_api.h
diff --git a/chrome/browser/extensions/api/instance_id/instance_id_api.h b/chrome/browser/extensions/api/instance_id/instance_id_api.h
new file mode 100644
index 0000000000000000000000000000000000000000..c7530ebbcaa711c7b1f492310dd36c358c17beec
--- /dev/null
+++ b/chrome/browser/extensions/api/instance_id/instance_id_api.h
@@ -0,0 +1,83 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_API_INSTANCE_ID_INSTANCE_ID_API_H_
+#define CHROME_BROWSER_EXTENSIONS_API_INSTANCE_ID_INSTANCE_ID_API_H_
+
+#include "extensions/browser/extension_function.h"
+
+class Profile;
+
+namespace extensions {
+
+class InstanceIDGetIDFunction : public UIThreadExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("instanceID.getID", INSTANCEID_GETID);
+
+ InstanceIDGetIDFunction();
+
+ protected:
+ ~InstanceIDGetIDFunction() override;
+
+ // ExtensionFunction:
+ ResponseAction Run() override;
+};
+
+class InstanceIDGetCreationTimeFunction : public UIThreadExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("instanceID.getCreationTime",
+ INSTANCEID_GETCREATIONTIME);
+
+ InstanceIDGetCreationTimeFunction();
+
+ protected:
+ ~InstanceIDGetCreationTimeFunction() override;
+
+ // ExtensionFunction:
+ ResponseAction Run() override;
+};
+
+class InstanceIDGetTokenFunction : public UIThreadExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("instanceID.getToken", INSTANCEID_GETTOKEN);
+
+ InstanceIDGetTokenFunction();
+
+ protected:
+ ~InstanceIDGetTokenFunction() override;
+
+ // ExtensionFunction:
+ ResponseAction Run() override;
+};
+
+class InstanceIDDeleteTokenFunction : public UIThreadExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("instanceID.DeleteToken", INSTANCEID_DELETETOKEN);
+
+ InstanceIDDeleteTokenFunction();
+
+ protected:
+ ~InstanceIDDeleteTokenFunction() override;
+
+ // ExtensionFunction:
+ ResponseAction Run() override;
+};
+
+class InstanceIDDeleteIDFunction : public UIThreadExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("instanceID.deleteID",
+ INSTANCEID_DELETEID);
+
+ InstanceIDDeleteIDFunction();
+
+ protected:
+ ~InstanceIDDeleteIDFunction() override;
+
+ // ExtensionFunction:
+ ResponseAction Run() override;
+};
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_API_INSTANCE_ID_INSTANCE_ID_API_H_
« no previous file with comments | « chrome/browser/extensions/api/instance_id/OWNERS ('k') | chrome/browser/extensions/api/instance_id/instance_id_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698