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

Side by Side Diff: content/common/presentation/presentation_service.mojom

Issue 839773002: Plumbing from WebPresentationClient to the Presentation Mojo service for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comment Created 5 years, 10 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 | « content/common/presentation/OWNERS ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 module presentation;
6
7 interface PresentationService {
8 // Returns the last screen availability state if it’s changed since the last
9 // time the method was called. The client has to call this method again when
10 // handling the result (provided via Mojo callback) to get the next update
11 // about the availability status.
12 // May start discovery of the presentation screens. The implementation might
13 // stop discovery once there are no active calls to GetScreenAvailability.
14 // |presentation_url| can be specified to help the implementation to filter
15 // out incompatible screens.
16 GetScreenAvailability(string? presentation_url) => (bool available);
17
18 // Called when the frame no longer listens to the
19 // |availablechange| event.
20 OnScreenAvailabilityListenerRemoved();
21 };
OLDNEW
« no previous file with comments | « content/common/presentation/OWNERS ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698