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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/chrome/idl/rtc_private.idl
diff --git a/third_party/chrome/idl/rtc_private.idl b/third_party/chrome/idl/rtc_private.idl
new file mode 100644
index 0000000000000000000000000000000000000000..88e775f7a365360c74d175220defdcfb27d8f036
--- /dev/null
+++ b/third_party/chrome/idl/rtc_private.idl
@@ -0,0 +1,29 @@
+// 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 rtcPrivate {
+ // Launch action type.
+ enum ActionType {chat, voice, video};
+
+ dictionary LaunchIntent {
+ // Launch action.
+ ActionType action;
+
+ // Launch data payload.
+ object data;
+
+ // MIME type.
+ DOMString type;
+ };
+
+ dictionary LaunchData {
+ // Launch intent.
+ LaunchIntent intent;
+ };
+
+ interface Events {
+ // Fired when an RTC launch event is raised.
+ static void onLaunch(optional LaunchData data);
+ };
+};
« 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