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

Side by Side Diff: ui/views/widget/desktop_aura/desktop_window_tree_host_win.h

Issue 1927203003: Add support for X11 workspaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed GetSavedWindowWorkspace, put command line code into browser_frame.cc Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "ui/aura/window_tree_host.h" 9 #include "ui/aura/window_tree_host.h"
10 #include "ui/views/views_export.h" 10 #include "ui/views/views_export.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 bool IsVisible() const override; 59 bool IsVisible() const override;
60 void SetSize(const gfx::Size& size) override; 60 void SetSize(const gfx::Size& size) override;
61 void StackAbove(aura::Window* window) override; 61 void StackAbove(aura::Window* window) override;
62 void StackAtTop() override; 62 void StackAtTop() override;
63 void CenterWindow(const gfx::Size& size) override; 63 void CenterWindow(const gfx::Size& size) override;
64 void GetWindowPlacement(gfx::Rect* bounds, 64 void GetWindowPlacement(gfx::Rect* bounds,
65 ui::WindowShowState* show_state) const override; 65 ui::WindowShowState* show_state) const override;
66 gfx::Rect GetWindowBoundsInScreen() const override; 66 gfx::Rect GetWindowBoundsInScreen() const override;
67 gfx::Rect GetClientAreaBoundsInScreen() const override; 67 gfx::Rect GetClientAreaBoundsInScreen() const override;
68 gfx::Rect GetRestoredBounds() const override; 68 gfx::Rect GetRestoredBounds() const override;
69 std::string GetWorkspace() const override;
69 gfx::Rect GetWorkAreaBoundsInScreen() const override; 70 gfx::Rect GetWorkAreaBoundsInScreen() const override;
70 void SetShape(SkRegion* native_region) override; 71 void SetShape(SkRegion* native_region) override;
71 void Activate() override; 72 void Activate() override;
72 void Deactivate() override; 73 void Deactivate() override;
73 bool IsActive() const override; 74 bool IsActive() const override;
74 void Maximize() override; 75 void Maximize() override;
75 void Minimize() override; 76 void Minimize() override;
76 void Restore() override; 77 void Restore() override;
77 bool IsMaximized() const override; 78 bool IsMaximized() const override;
78 bool IsMinimized() const override; 79 bool IsMinimized() const override;
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 // Indicates if current window will receive mouse events when should not 265 // Indicates if current window will receive mouse events when should not
265 // become activated. 266 // become activated.
266 bool wants_mouse_events_when_inactive_ = false; 267 bool wants_mouse_events_when_inactive_ = false;
267 268
268 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); 269 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin);
269 }; 270 };
270 271
271 } // namespace views 272 } // namespace views
272 273
273 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ 274 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698