diff options
Diffstat (limited to 'mash/wm/non_client_frame_controller.cc')
| -rw-r--r-- | mash/wm/non_client_frame_controller.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mash/wm/non_client_frame_controller.cc b/mash/wm/non_client_frame_controller.cc index ed6ad3a..774329a 100644 --- a/mash/wm/non_client_frame_controller.cc +++ b/mash/wm/non_client_frame_controller.cc @@ -125,6 +125,14 @@ class WmNativeWidgetMus : public views::NativeWidgetMus { void CenterWindow(const gfx::Size& size) override { // Do nothing. The client controls the size, not us. } + bool SetWindowTitle(const base::string16& title) override { + // Do nothing. The client controls the window title, not us. + return false; + } + void SetWindowIcons(const gfx::ImageSkia& window_icon, + const gfx::ImageSkia& app_icon) override { + // Do nothing. The client controls window icons, not us. + } void UpdateClientArea() override { // This pushes the client area to the WS. We don't want to do that as // the client area should come from the client, not us. |
