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

Unified Diff: third_party/chrome/idl/push_messaging.idl

Issue 12261015: Import chrome idl into third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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
« no previous file with comments | « third_party/chrome/idl/proxy.json ('k') | third_party/chrome/idl/rtc_private.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/chrome/idl/push_messaging.idl
diff --git a/third_party/chrome/idl/push_messaging.idl b/third_party/chrome/idl/push_messaging.idl
new file mode 100644
index 0000000000000000000000000000000000000000..0d81b43678d0efb2244f0dc20955a61f026f21e7
--- /dev/null
+++ b/third_party/chrome/idl/push_messaging.idl
@@ -0,0 +1,39 @@
+// Copyright (c) 2012 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.
+
+namespace pushMessaging{
+
+ dictionary Message {
+ // The subchannel the message was sent on;
+ // only values 0-3 are valid.
+ long subchannelId;
+
+ // The payload associated with the message, if any.
+ DOMString payload;
+ };
+
+ dictionary ChannelIdResult {
+ // The channel ID for this app to use for push messaging.
+ DOMString channelId;
+ };
+
+ callback ChannelIdCallback = void (ChannelIdResult channelId);
+
+ interface Functions {
+ // Retrieves the channel ID associated with this app or extension.
+ // Typically an app or extension will want to send this value
+ // to its application server so the server can use it
+ // to trigger push messages back to the app or extension.
+ // If the interactive flag is set, we will ask the user to log in
+ // when they are not already logged in.
+ static void getChannelId(optional boolean interactive,
+ ChannelIdCallback callback);
+ };
+
+ interface Events {
+ // Fired when a push message has been received.
+ // |message| : The details associated with the message.
+ static void onMessage(Message message);
+ };
+};
« no previous file with comments | « third_party/chrome/idl/proxy.json ('k') | third_party/chrome/idl/rtc_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698