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

Side by Side Diff: third_party/chrome/idl/rtc_private.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/chrome/idl/push_messaging.idl ('k') | third_party/chrome/idl/runtime.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 namespace rtcPrivate {
6 // Launch action type.
7 enum ActionType {chat, voice, video};
8
9 dictionary LaunchIntent {
10 // Launch action.
11 ActionType action;
12
13 // Launch data payload.
14 object data;
15
16 // MIME type.
17 DOMString type;
18 };
19
20 dictionary LaunchData {
21 // Launch intent.
22 LaunchIntent intent;
23 };
24
25 interface Events {
26 // Fired when an RTC launch event is raised.
27 static void onLaunch(optional LaunchData data);
28 };
29 };
OLDNEW
« no previous file with comments | « third_party/chrome/idl/push_messaging.idl ('k') | third_party/chrome/idl/runtime.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698