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

Unified Diff: ui/views/mus/desktop_window_tree_host_mus.cc

Issue 2481363005: Adds some TODOs with references to bugs (Closed)
Patch Set: tweak Created 4 years, 1 month 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 | « no previous file | ui/views/mus/mus_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/desktop_window_tree_host_mus.cc
diff --git a/ui/views/mus/desktop_window_tree_host_mus.cc b/ui/views/mus/desktop_window_tree_host_mus.cc
index b1f420f344dc53e3e94a77cf10dd172355180800..f42e00a7c8c9789df77403dc519147a61218656e 100644
--- a/ui/views/mus/desktop_window_tree_host_mus.cc
+++ b/ui/views/mus/desktop_window_tree_host_mus.cc
@@ -131,10 +131,12 @@ void DesktopWindowTreeHostMus::SetSize(const gfx::Size& size) {
}
void DesktopWindowTreeHostMus::StackAbove(aura::Window* window) {
+ // TODO: implement window stacking, http://crbug.com/663617.
NOTIMPLEMENTED();
}
void DesktopWindowTreeHostMus::StackAtTop() {
+ // TODO: implement window stacking, http://crbug.com/663617.
NOTIMPLEMENTED();
}
@@ -218,6 +220,7 @@ void DesktopWindowTreeHostMus::Activate() {
void DesktopWindowTreeHostMus::Deactivate() {
// TODO: Deactivate() means focus next window, that needs to go to mus.
+ // http://crbug.com/663618.
NOTIMPLEMENTED();
}
@@ -328,7 +331,7 @@ bool DesktopWindowTreeHostMus::IsFullscreen() const {
}
void DesktopWindowTreeHostMus::SetOpacity(float opacity) {
// TODO: this likely need to go to server so that non-client decorations get
- // opacity.
+ // opacity. http://crbug.com/663619.
window()->layer()->SetOpacity(opacity);
}
« no previous file with comments | « no previous file | ui/views/mus/mus_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698