Chromium Code Reviews| Index: chrome/common/extensions/api/rtc_private.idl |
| diff --git a/chrome/common/extensions/api/rtc_private.idl b/chrome/common/extensions/api/rtc_private.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..77845024933b49768af19c6fbff3817164be8cf2 |
| --- /dev/null |
| +++ b/chrome/common/extensions/api/rtc_private.idl |
| @@ -0,0 +1,26 @@ |
| +// 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 { |
| + dictionary LaunchIntent { |
| + // Launch action. |
| + DOMString action; |
| + |
| + // Launch action. |
|
Daniel Erat
2012/09/05 14:05:55
nit: fix this comment
zel
2012/09/05 18:50:33
Done.
|
| + DOMString 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); |
| + }; |
| +}; |