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

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

Issue 1957143002: [OnionSoup] Move persentation_service.mojom from //content to //third_party/WebKit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: renamed presentation_service.mojom to presentation.mojom Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/public/blink.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
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
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 };
OLDNEW
« no previous file with comments | « third_party/WebKit/public/blink.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698