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

Unified Diff: components/view_manager/public/interfaces/native_viewport.mojom

Issue 1164553004: Revert of Mandoline: Remove native_viewport.mojom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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: components/view_manager/public/interfaces/native_viewport.mojom
diff --git a/components/view_manager/public/interfaces/native_viewport.mojom b/components/view_manager/public/interfaces/native_viewport.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..220fc535a6ec3c892ba5eedb1714db4ee7d5531e
--- /dev/null
+++ b/components/view_manager/public/interfaces/native_viewport.mojom
@@ -0,0 +1,42 @@
+// Copyright 2014 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 mojo;
+
+import "components/view_manager/public/interfaces/context_provider.mojom";
+import "ui/mojo/geometry/geometry.mojom";
+import "ui/mojo/events/input_events.mojom";
+
+struct ViewportMetrics {
+ Size size;
+ // A value of 0 indicates the real value is not yet available.
+ float device_pixel_ratio = 0.0;
+};
+
+interface NativeViewport {
+ // TODO(sky): having a create function is awkward. Should there be a factory
+ // to create the NativeViewport that takes the size?
+ Create(Size size) => (ViewportMetrics metrics);
+
+ Show();
+ Hide();
+ Close();
+ SetSize(Size size);
+ SetEventDispatcher(NativeViewportEventDispatcher dispatcher);
+
+ // Requests a ContextProvider capable of producing contexts that draw to
+ // this native viewport.
+ GetContextProvider(ContextProvider& provider);
+
+ // The initial viewport metrics will be sent in the reply to the Create
+ // method. Call RequestMetrics() to receive updates when the viewport metrics
+ // change. The reply will be sent when the viewport metrics are different from
+ // the values last sent, so to receive continuous updates call this method
+ // again after receiving the callback.
+ RequestMetrics() => (ViewportMetrics metrics);
+};
+
+interface NativeViewportEventDispatcher {
+ OnEvent(Event event) => ();
+};
« no previous file with comments | « components/view_manager/public/interfaces/BUILD.gn ('k') | components/view_manager/public/interfaces/view_manager.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698