Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
|
dcheng
2016/05/09 18:13:59
This needs a mojom reviewers noparent rule.
juncai
2016/05/09 18:26:35
Done.
| |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module content.mojom; | 5 module blink.mojom; |
| 6 | 6 |
| 7 struct PresentationSessionInfo { | 7 struct PresentationSessionInfo { |
| 8 string url; | 8 string url; |
| 9 string id; | 9 string id; |
| 10 }; | 10 }; |
| 11 | 11 |
| 12 enum PresentationConnectionState { | 12 enum PresentationConnectionState { |
| 13 CONNECTING, | 13 CONNECTING, |
| 14 CONNECTED, | 14 CONNECTED, |
| 15 CLOSED, | 15 CLOSED, |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 131 PresentationConnectionCloseReason reason, | 131 PresentationConnectionCloseReason reason, |
| 132 string message); | 132 string message); |
| 133 | 133 |
| 134 // See PresentationService::ListenForSessionMessages. | 134 // See PresentationService::ListenForSessionMessages. |
| 135 OnSessionMessagesReceived(PresentationSessionInfo sessionInfo, | 135 OnSessionMessagesReceived(PresentationSessionInfo sessionInfo, |
| 136 array<SessionMessage> messages); | 136 array<SessionMessage> messages); |
| 137 | 137 |
| 138 // See PresentationService::SetDefaultPresentationURL. | 138 // See PresentationService::SetDefaultPresentationURL. |
| 139 OnDefaultSessionStarted(PresentationSessionInfo sessionInfo); | 139 OnDefaultSessionStarted(PresentationSessionInfo sessionInfo); |
| 140 }; | 140 }; |
| OLD | NEW |