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

Unified Diff: content/renderer/mus/renderer_window_tree_client.h

Issue 2778363002: Mus-WS / Aura-Mus: Propagate LocalSurfaceId on WindowTreeHost creation (Closed)
Patch Set: Add comments Created 3 years, 9 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
« no previous file with comments | « no previous file | content/renderer/mus/renderer_window_tree_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/mus/renderer_window_tree_client.h
diff --git a/content/renderer/mus/renderer_window_tree_client.h b/content/renderer/mus/renderer_window_tree_client.h
index d3b2672286f3da81318435afd817393d8ad47d72..72173c3617774e08c23eafaa712147ed7856ce9c 100644
--- a/content/renderer/mus/renderer_window_tree_client.h
+++ b/content/renderer/mus/renderer_window_tree_client.h
@@ -72,24 +72,28 @@ class RendererWindowTreeClient : public ui::mojom::WindowTreeClient {
// these will remain unimplemented in the long-term. Some of the
// implementations would require some amount of refactoring out of
// RenderWidget and related classes (e.g. resize, input, ime etc.).
- void OnEmbed(ui::ClientSpecificId client_id,
- ui::mojom::WindowDataPtr root,
- ui::mojom::WindowTreePtr tree,
- int64_t display_id,
- ui::Id focused_window_id,
- bool drawn,
- const cc::FrameSinkId& frame_sink_id) override;
+ void OnEmbed(
+ ui::ClientSpecificId client_id,
+ ui::mojom::WindowDataPtr root,
+ ui::mojom::WindowTreePtr tree,
+ int64_t display_id,
+ ui::Id focused_window_id,
+ bool drawn,
+ const cc::FrameSinkId& frame_sink_id,
+ const base::Optional<cc::LocalSurfaceId>& local_surface_id) override;
void OnEmbeddedAppDisconnected(ui::Id window_id) override;
void OnUnembed(ui::Id window_id) override;
void OnCaptureChanged(ui::Id new_capture_window_id,
ui::Id old_capture_window_id) override;
void OnFrameSinkIdAllocated(ui::Id window_id,
const cc::FrameSinkId& frame_sink_id) override;
- void OnTopLevelCreated(uint32_t change_id,
- ui::mojom::WindowDataPtr data,
- int64_t display_id,
- bool drawn,
- const cc::FrameSinkId& frame_sink_id) override;
+ void OnTopLevelCreated(
+ uint32_t change_id,
+ ui::mojom::WindowDataPtr data,
+ int64_t display_id,
+ bool drawn,
+ const cc::FrameSinkId& frame_sink_id,
+ const base::Optional<cc::LocalSurfaceId>& local_surface_id) override;
void OnWindowBoundsChanged(
ui::Id window_id,
const gfx::Rect& old_bounds,
« no previous file with comments | « no previous file | content/renderer/mus/renderer_window_tree_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698