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

Unified Diff: ui/platform_window/x11/x11_window_ozone.cc

Issue 2665193002: Fix aura_unittests for Ozone X11. (Closed)
Patch Set: Pass initial bounds into X11Window/X11WindowOzone. Created 3 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
« no previous file with comments | « ui/platform_window/x11/x11_window_ozone.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/platform_window/x11/x11_window_ozone.cc
diff --git a/ui/platform_window/x11/x11_window_ozone.cc b/ui/platform_window/x11/x11_window_ozone.cc
index 13cf354a680f20f6d993724a6857a385439f2887..c3051cb5eafc49d4acc363a43f748488ede002db 100644
--- a/ui/platform_window/x11/x11_window_ozone.cc
+++ b/ui/platform_window/x11/x11_window_ozone.cc
@@ -18,8 +18,9 @@ namespace ui {
X11WindowOzone::X11WindowOzone(X11EventSourceLibevent* event_source,
X11WindowManagerOzone* window_manager,
- PlatformWindowDelegate* delegate)
- : X11WindowBase(delegate),
+ PlatformWindowDelegate* delegate,
+ const gfx::Rect& bounds)
+ : X11WindowBase(delegate, bounds),
event_source_(event_source),
window_manager_(window_manager) {
DCHECK(event_source_);
« no previous file with comments | « ui/platform_window/x11/x11_window_ozone.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698