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 3710d53acd27b3725a26ae71dd9844d29a7d98ba..6b76ebec7c3fd3ce375942421ba851b8e2ab1221 100644 |
--- a/chrome/browser/chromeos/accessibility/chromevox_panel.cc |
+++ b/chrome/browser/chromeos/accessibility/chromevox_panel.cc |
@@ -82,7 +82,6 @@ ChromeVoxPanel::ChromeVoxPanel(content::BrowserContext* browser_context) |
params.parent = ash::Shell::GetContainer( |
root_window, ash::kShellWindowId_SettingBubbleContainer); |
params.delegate = this; |
- params.activatable = views::Widget::InitParams::ACTIVATABLE_NO; |
params.bounds = gfx::Rect(0, 0, root_window->bounds().width(), |
root_window->bounds().height()); |
widget_->Init(params); |
@@ -111,6 +110,7 @@ void ChromeVoxPanel::DidFirstVisuallyNonEmptyPaint() { |
void ChromeVoxPanel::EnterFullscreen() { |
fullscreen_ = true; |
+ widget_->Activate(); |
UpdateWidgetBounds(); |
} |