| Index: chrome/browser/chromeos/accessibility/chromevox_panel.cc
|
| diff --git a/chrome/browser/chromeos/accessibility/chromevox_panel.cc b/chrome/browser/chromeos/accessibility/chromevox_panel.cc
|
| index 01c98055d5b715e3ac94ec776a397e9793dd55cb..2fa56ebe1d51e8f9d72b0e9c3fd9aec8be576ff2 100644
|
| --- a/chrome/browser/chromeos/accessibility/chromevox_panel.cc
|
| +++ b/chrome/browser/chromeos/accessibility/chromevox_panel.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "ash/shelf/shelf.h"
|
| #include "ash/shelf/shelf_layout_manager.h"
|
| #include "ash/shell.h"
|
| #include "ash/shell_window_ids.h"
|
| @@ -105,7 +106,8 @@ void ChromeVoxPanel::Close() {
|
|
|
| void ChromeVoxPanel::DidFirstVisuallyNonEmptyPaint() {
|
| widget_->Show();
|
| - ash::ShelfLayoutManager::ForShelf(GetRootWindow())
|
| + ash::Shelf::ForWindow(GetRootWindow())
|
| + ->shelf_layout_manager()
|
| ->SetChromeVoxPanelHeight(kPanelHeight);
|
| }
|
|
|
|
|