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

Side by Side Diff: chrome/browser/chromeos/accessibility/chromevox_panel.cc

Issue 2237903003: mash: Migrate Shelf aura::Window uses to WmWindow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move shelf notify functions to WmShell. Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "ash/aura/wm_window_aura.h"
5 #include "ash/common/accessibility_types.h" 6 #include "ash/common/accessibility_types.h"
6 #include "ash/common/shell_window_ids.h" 7 #include "ash/common/shell_window_ids.h"
7 #include "ash/root_window_controller.h" 8 #include "ash/root_window_controller.h"
8 #include "ash/shelf/shelf.h" 9 #include "ash/shelf/shelf.h"
9 #include "ash/shelf/shelf_layout_manager.h" 10 #include "ash/shelf/shelf_layout_manager.h"
10 #include "ash/shell.h" 11 #include "ash/shell.h"
11 #include "base/macros.h" 12 #include "base/macros.h"
12 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" 13 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
13 #include "chrome/browser/chromeos/accessibility/chromevox_panel.h" 14 #include "chrome/browser/chromeos/accessibility/chromevox_panel.h"
14 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" 15 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 void ChromeVoxPanel::Close() { 109 void ChromeVoxPanel::Close() {
109 widget_->Close(); 110 widget_->Close();
110 } 111 }
111 112
112 void ChromeVoxPanel::DidFirstVisuallyNonEmptyPaint() { 113 void ChromeVoxPanel::DidFirstVisuallyNonEmptyPaint() {
113 widget_->Show(); 114 widget_->Show();
114 UpdatePanelHeight(); 115 UpdatePanelHeight();
115 } 116 }
116 117
117 void ChromeVoxPanel::UpdatePanelHeight() { 118 void ChromeVoxPanel::UpdatePanelHeight() {
118 ash::Shelf* shelf = ash::Shelf::ForWindow(GetRootWindow()); 119 ash::Shelf* shelf =
120 ash::Shelf::ForWindow(ash::WmWindowAura::Get(GetRootWindow()));
119 if (!shelf) 121 if (!shelf)
120 return; 122 return;
121 123
122 ash::ShelfLayoutManager* shelf_layout_manager = shelf->shelf_layout_manager(); 124 ash::ShelfLayoutManager* shelf_layout_manager = shelf->shelf_layout_manager();
123 if (shelf_layout_manager) 125 if (shelf_layout_manager)
124 shelf_layout_manager->SetChromeVoxPanelHeight(kPanelHeight); 126 shelf_layout_manager->SetChromeVoxPanelHeight(kPanelHeight);
125 } 127 }
126 128
127 void ChromeVoxPanel::EnterFullscreen() { 129 void ChromeVoxPanel::EnterFullscreen() {
128 Focus(); 130 Focus();
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 // If we're in full-screen mode, give the panel a height of 0 unless 179 // If we're in full-screen mode, give the panel a height of 0 unless
178 // it's active. 180 // it's active.
179 if (ash::GetRootWindowController(GetRootWindow()) 181 if (ash::GetRootWindowController(GetRootWindow())
180 ->GetWindowForFullscreenMode() && 182 ->GetWindowForFullscreenMode() &&
181 !widget_->IsActive()) { 183 !widget_->IsActive()) {
182 bounds.set_height(0); 184 bounds.set_height(0);
183 } 185 }
184 186
185 widget_->SetBounds(bounds); 187 widget_->SetBounds(bounds);
186 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698