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

Side by Side Diff: third_party/WebKit/public/platform/modules/presentation/presentation.mojom

Issue 2340433003: [Presentation API] 1-UA: notify receiver page when receiver connection becomes available (blink sid… (Closed)
Patch Set: resolve code review comments from mlamouri Created 4 years, 3 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 unified diff | Download patch
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698