| Index: ash/keyboard_overlay/keyboard_overlay_view.cc
|
| diff --git a/ash/keyboard_overlay/keyboard_overlay_view.cc b/ash/keyboard_overlay/keyboard_overlay_view.cc
|
| index 37d83537b2fdd5d3ece0b0e266f04e356cda632d..a52ace143c464142a9f975c569fe7a8b9d76e77b 100644
|
| --- a/ash/keyboard_overlay/keyboard_overlay_view.cc
|
| +++ b/ash/keyboard_overlay/keyboard_overlay_view.cc
|
| @@ -31,6 +31,8 @@ const struct KeyEventData {
|
|
|
| }
|
|
|
| +namespace ash {
|
| +
|
| KeyboardOverlayView::KeyboardOverlayView(
|
| content::BrowserContext* context,
|
| WebDialogDelegate* delegate,
|
| @@ -42,7 +44,7 @@ KeyboardOverlayView::~KeyboardOverlayView() {
|
| }
|
|
|
| void KeyboardOverlayView::Cancel() {
|
| - ash::Shell::GetInstance()->overlay_filter()->Deactivate();
|
| + Shell::GetInstance()->overlay_filter()->Deactivate();
|
| views::Widget* widget = GetWidget();
|
| if (widget)
|
| widget->Close();
|
| @@ -75,9 +77,11 @@ void KeyboardOverlayView::ShowDialog(
|
| new KeyboardOverlayView(context, delegate, handler);
|
| delegate->Show(view);
|
|
|
| - ash::Shell::GetInstance()->overlay_filter()->Activate(view);
|
| + Shell::GetInstance()->overlay_filter()->Activate(view);
|
| }
|
|
|
| void KeyboardOverlayView::WindowClosing() {
|
| Cancel();
|
| }
|
| +
|
| +} // namespace ash
|
|
|