Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 dictionary LaunchIntent { | |
| 7 // Launch action. | |
| 8 DOMString action; | |
|
Mihai Parparita -not on Chrome
2012/09/05 20:11:09
This should use an enum.
zel
2012/09/05 21:30:44
Done.
| |
| 9 | |
| 10 // Launch data payload. | |
| 11 DOMString data; | |
| 12 | |
| 13 // MIME type. | |
| 14 DOMString type; | |
| 15 }; | |
| 16 | |
| 17 dictionary LaunchData { | |
| 18 // Launch intent. | |
| 19 LaunchIntent intent; | |
| 20 }; | |
| 21 | |
| 22 interface Events { | |
| 23 // Fired when an RTC launch event is raised. | |
| 24 static void onLaunch(optional LaunchData data); | |
| 25 }; | |
| 26 }; | |
| OLD | NEW |