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

Unified Diff: content/common/presentation/presentation_service_client.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: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/common/presentation/presentation_service_client.mojom
diff --git a/content/common/presentation/presentation_service_client.mojom b/content/common/presentation/presentation_service_client.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..12cb9b7160c6197b4b60dcb2d6fc1adc1c988e94
--- /dev/null
+++ b/content/common/presentation/presentation_service_client.mojom
@@ -0,0 +1,13 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+module presentation;
+
+// The client for the PresentationService that corresponds to the renderer side
+// implementation of the Presentation API.
+interface PresentationServiceClient {
+ // Called when the presentation screen availability changes.
+ // Fires the |availablechange| event in Javascript.
+ DeviceAvailabilityChanged(bool available);
+};

Powered by Google App Engine
This is Rietveld 408576698