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

Side by Side Diff: content/common/frame_sink_provider.mojom

Issue 2951053005: Add Mojo API for Blink hit testing (Closed)
Patch Set: Make the hit test API accesible by viz component Created 3 years, 4 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 module content.mojom; 1 module content.mojom;
2 2
3 import "services/viz/public/interfaces/hit_test/input_hit_test.mojom";
3 import "services/viz/public/interfaces/compositing/compositor_frame_sink.mojom"; 4 import "services/viz/public/interfaces/compositing/compositor_frame_sink.mojom";
4 5
5 // This interface provides CompositorFrameSink for the renderer. 6 // This interface provides CompositorFrameSink for the renderer.
6 interface FrameSinkProvider { 7 interface FrameSinkProvider {
7 CreateForWidget( 8 CreateForWidget(
8 int32 widget_id, viz.mojom.CompositorFrameSink& request, 9 int32 widget_id, viz.mojom.CompositorFrameSink& request,
9 viz.mojom.CompositorFrameSinkClient client); 10 viz.mojom.CompositorFrameSinkClient client,
11 viz.mojom.FrameInputHitTest hit_test);
10 }; 12 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698