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

Side by Side Diff: chrome/common/extensions/api/experimental_push_messaging.idl

Issue 10836182: Obfuscated Gaia ID fetcher (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: CR fixes per Mihai Created 8 years, 4 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // File-level comment to appease parser. Eventually this will not be necessary. 5 // File-level comment to appease parser. Eventually this will not be necessary.
6 6
7 [nodoc] namespace experimental.pushMessaging{ 7 [nodoc] namespace experimental.pushMessaging{
8 dictionary Message { 8 dictionary Message {
9 // The subchannel the message was sent on. 9 // The subchannel the message was sent on.
10 long subchannelId; 10 long subchannelId;
11 11
12 // The payload associated with the message, if any. 12 // The payload associated with the message, if any.
13 DOMString payload; 13 DOMString payload;
14 }; 14 };
15 15
16 dictionary ChannelIdResult {
17 // The channel ID for this app to use for push messaging.
18 DOMString channelId;
19 };
20
21 callback ChannelIdCallback = void (ChannelIdResult channelId);
22
23 interface Functions {
24 // Retrieves the channel ID associated with this extension. Typically, an
25 // extension will want to send this value to its application server so the
26 // server can use it to trigger push messages back to the extension.
27 static void getChannelId(ChannelIdCallback callback);
28 };
29
16 interface Events { 30 interface Events {
17 // Fired when a push message has been received. 31 // Fired when a push message has been received.
18 // |message| : The details associated with the message. 32 // |message| : The details associated with the message.
19 static void onMessage(Message message); 33 static void onMessage(Message message);
20 }; 34 };
21 }; 35 };
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698