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

Unified Diff: ui/ozone/platform/drm/ozone_platform_gbm.cc

Issue 1631073002: Relocate ozone gbm overlay config cache to manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 11 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
Index: ui/ozone/platform/drm/ozone_platform_gbm.cc
diff --git a/ui/ozone/platform/drm/ozone_platform_gbm.cc b/ui/ozone/platform/drm/ozone_platform_gbm.cc
index 7411c29a1a7931f872345fc526f2dc936dbe4acf..e07177fa362a93f75017ed454a561d24ca785fee 100644
--- a/ui/ozone/platform/drm/ozone_platform_gbm.cc
+++ b/ui/ozone/platform/drm/ozone_platform_gbm.cc
@@ -104,10 +104,10 @@ class OzonePlatformGbm : public OzonePlatform {
const gfx::Rect& bounds) override {
TRACE_EVENT0("ozone", "CreatePlatformWindow");
- scoped_ptr<DrmWindowHost> platform_window(
- new DrmWindowHost(delegate, bounds, gpu_platform_support_host_.get(),
- event_factory_ozone_.get(), cursor_.get(),
- window_manager_.get(), display_manager_.get()));
+ scoped_ptr<DrmWindowHost> platform_window(new DrmWindowHost(
+ delegate, bounds, gpu_platform_support_host_.get(),
+ event_factory_ozone_.get(), cursor_.get(), window_manager_.get(),
+ display_manager_.get(), overlay_manager_.get()));
TRACE_EVENT0("ozone", "CreatePlatformWindow Initialize platform_window");
platform_window->Initialize();
return std::move(platform_window);

Powered by Google App Engine
This is Rietveld 408576698