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

Unified Diff: ui/aura/mus/window_port_mus.cc

Issue 2868473002: Implement aura::Window::CreateCompositorFrameSink() (Closed)
Patch Set: Address review issues Created 3 years, 7 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 | « ui/aura/mus/window_port_mus.h ('k') | ui/aura/test/aura_test_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/mus/window_port_mus.cc
diff --git a/ui/aura/mus/window_port_mus.cc b/ui/aura/mus/window_port_mus.cc
index 4c605a06f0416bb5186802a7eaa19792e05256e0..4c98ed4558a036614237a01cf0d8aa1497009064 100644
--- a/ui/aura/mus/window_port_mus.cc
+++ b/ui/aura/mus/window_port_mus.cc
@@ -520,6 +520,17 @@ void WindowPortMus::OnPropertyChanged(const void* key,
std::move(data));
}
+std::unique_ptr<cc::CompositorFrameSink>
+WindowPortMus::CreateCompositorFrameSink() {
+ // TODO(penghuang): Implement it for Mus.
+ return nullptr;
+}
+
+cc::SurfaceId WindowPortMus::GetSurfaceId() const {
+ // TODO(penghuang): Implement it for Mus.
+ return cc::SurfaceId();
+}
+
void WindowPortMus::UpdatePrimarySurfaceInfo() {
bool embeds_surface = window_mus_type() == WindowMusType::TOP_LEVEL_IN_WM ||
window_mus_type() == WindowMusType::EMBED_IN_OWNER;
« no previous file with comments | « ui/aura/mus/window_port_mus.h ('k') | ui/aura/test/aura_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698