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

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

Issue 23731011: Removed chrome.rtcPrivate API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 2 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 | « chrome/common/extensions/api/api.gyp ('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
(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 // rtcPrivate.
6 namespace rtcPrivate {
7 // Launch action type.
8 enum ActionType {chat, voice, video};
9
10 dictionary LaunchIntent {
11 // Launch action.
12 ActionType action;
13
14 // Launch data payload.
15 object data;
16
17 // MIME type.
18 DOMString type;
19 };
20
21 dictionary LaunchData {
22 // Launch intent.
23 LaunchIntent intent;
24 };
25
26 interface Events {
27 // Fired when an RTC launch event is raised.
28 static void onLaunch(optional LaunchData data);
29 };
30 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698