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

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: setvisible-browser: onemore 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
« no previous file with comments | « 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 ef046254b29844251d5f4e476ddeeb7fa5c05f3b..a620f14bcafa564610e299bcaefe65ce8bd4032b 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
« no previous file with comments | « 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