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

Unified Diff: ui/views/mus/surface_context_factory.cc

Issue 2238693002: Plumb SetVisible from ui::Compositor to the DirectRenderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« cc/output/renderer.h ('K') | « ui/views/mus/surface_context_factory.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/surface_context_factory.cc
diff --git a/ui/views/mus/surface_context_factory.cc b/ui/views/mus/surface_context_factory.cc
index 08fb8c6cbbd72610fe5669945a0b07d1cedb9d19..35f5d55332313078612fd93772df65f0d5909e5d 100644
--- a/ui/views/mus/surface_context_factory.cc
+++ b/ui/views/mus/surface_context_factory.cc
@@ -97,9 +97,14 @@ cc::SurfaceManager* SurfaceContextFactory::GetSurfaceManager() {
return nullptr;
}
+void SurfaceContextFactory::SetDisplayVisible(ui::Compositor* compositor,
+ bool visible) {
+ // TODO(fsamuel): display[compositor]->SetVisible(visible);
+}
+
void SurfaceContextFactory::ResizeDisplay(ui::Compositor* compositor,
const gfx::Size& size) {
- // NOTIMPLEMENTED();
+ // TODO(fsamuel): display[compositor]->Resize(size);
}
} // namespace views
« cc/output/renderer.h ('K') | « ui/views/mus/surface_context_factory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698