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

Unified Diff: ash/mus/non_client_frame_controller.cc

Issue 2187103002: services/ui: Remove unused connector argument (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build errors Created 4 years, 5 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 | « ash/mus/bridge/wm_root_window_controller_mus.cc ('k') | ash/touch_hud/mus/touch_hud_application.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/non_client_frame_controller.cc
diff --git a/ash/mus/non_client_frame_controller.cc b/ash/mus/non_client_frame_controller.cc
index 3ef8bf3443d966bec537506f9f50298030f3abd3..cd75f6be5c224192021f7682aa02784d277dd9d6 100644
--- a/ash/mus/non_client_frame_controller.cc
+++ b/ash/mus/non_client_frame_controller.cc
@@ -112,11 +112,9 @@ class EmptyDraggableNonClientFrameView : public views::NonClientFrameView {
class WmNativeWidgetMus : public views::NativeWidgetMus {
public:
WmNativeWidgetMus(views::internal::NativeWidgetDelegate* delegate,
- shell::Connector* connector,
::ui::Window* window,
::ui::WindowManagerClient* window_manager_client)
: NativeWidgetMus(delegate,
- connector,
window,
::ui::mojom::SurfaceType::UNDERLAY),
window_manager_client_(window_manager_client) {}
@@ -238,7 +236,7 @@ NonClientFrameController::NonClientFrameController(
params.activatable = views::Widget::InitParams::ACTIVATABLE_NO;
params.delegate = this;
params.native_widget =
- new WmNativeWidgetMus(widget_, connector, window, window_manager_client);
+ new WmNativeWidgetMus(widget_, window, window_manager_client);
widget_->Init(params);
parent->AddChild(window);
« no previous file with comments | « ash/mus/bridge/wm_root_window_controller_mus.cc ('k') | ash/touch_hud/mus/touch_hud_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698