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 |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module blink.mojom; | 5 module blink.mojom; |
| 6 | 6 |
| 7 import "url/mojo/url.mojom"; | 7 import "url/mojo/url.mojom"; |
| 8 | 8 |
| 9 struct PresentationSessionInfo { | 9 struct PresentationSessionInfo { |
| 10 url.mojom.Url url; | 10 url.mojom.Url url; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 132 OnConnectionClosed(PresentationSessionInfo connection, | 132 OnConnectionClosed(PresentationSessionInfo connection, |
| 133 PresentationConnectionCloseReason reason, | 133 PresentationConnectionCloseReason reason, |
| 134 string message); | 134 string message); |
| 135 | 135 |
| 136 // See PresentationService::ListenForSessionMessages. | 136 // See PresentationService::ListenForSessionMessages. |
| 137 OnSessionMessagesReceived(PresentationSessionInfo sessionInfo, | 137 OnSessionMessagesReceived(PresentationSessionInfo sessionInfo, |
| 138 array<SessionMessage> messages); | 138 array<SessionMessage> messages); |
| 139 | 139 |
| 140 // See PresentationService::SetDefaultPresentationURL. | 140 // See PresentationService::SetDefaultPresentationURL. |
| 141 OnDefaultSessionStarted(PresentationSessionInfo sessionInfo); | 141 OnDefaultSessionStarted(PresentationSessionInfo sessionInfo); |
| 142 | |
| 143 // See PresentationService::ListeningForReceiverPageRendered. | |
| 144 OnReceiverConnectionAvailable(PresentationSessionInfo sessionInfo); | |
|
mark a. foltz
2016/09/15 16:53:19
s/sessionInfo/connection/
We should rename the re
zhaobin
2016/09/15 18:56:03
Done.
| |
| 142 }; | 145 }; |
| OLD | NEW |