summaryrefslogtreecommitdiffstats
path: root/ash/keyboard_overlay/keyboard_overlay_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'ash/keyboard_overlay/keyboard_overlay_view.h')
-rw-r--r--ash/keyboard_overlay/keyboard_overlay_view.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ash/keyboard_overlay/keyboard_overlay_view.h b/ash/keyboard_overlay/keyboard_overlay_view.h
index 52045b5..d7a473f 100644
--- a/ash/keyboard_overlay/keyboard_overlay_view.h
+++ b/ash/keyboard_overlay/keyboard_overlay_view.h
@@ -38,12 +38,12 @@ class ASH_WITH_CONTENT_EXPORT KeyboardOverlayView
KeyboardOverlayView(content::BrowserContext* context,
ui::WebDialogDelegate* delegate,
WebContentsHandler* handler);
- virtual ~KeyboardOverlayView();
+ ~KeyboardOverlayView() override;
// Overridden from ash::OverlayEventFilter::Delegate:
- virtual void Cancel() override;
- virtual bool IsCancelingKeyEvent(ui::KeyEvent* event) override;
- virtual aura::Window* GetWindow() override;
+ void Cancel() override;
+ bool IsCancelingKeyEvent(ui::KeyEvent* event) override;
+ aura::Window* GetWindow() override;
// Shows the keyboard overlay.
static void ShowDialog(content::BrowserContext* context,
@@ -55,7 +55,7 @@ class ASH_WITH_CONTENT_EXPORT KeyboardOverlayView
FRIEND_TEST_ALL_PREFIXES(KeyboardOverlayViewTest, NoRedundantCancelingKeys);
// Overridden from views::WidgetDelegate:
- virtual void WindowClosing() override;
+ void WindowClosing() override;
static void GetCancelingKeysForTesting(
std::vector<KeyEventData>* canceling_keys);