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

Unified Diff: ash/shell/keyboard_controller_proxy_stub.h

Issue 679283002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: ash/shell/keyboard_controller_proxy_stub.h
diff --git a/ash/shell/keyboard_controller_proxy_stub.h b/ash/shell/keyboard_controller_proxy_stub.h
index aedfd41edb8eeb59cfb55fb9701ad6b63a6adaf7..2444b27d71e5afc9977735db0e2e6ddd1be386fa 100644
--- a/ash/shell/keyboard_controller_proxy_stub.h
+++ b/ash/shell/keyboard_controller_proxy_stub.h
@@ -18,20 +18,21 @@ namespace ash {
class KeyboardControllerProxyStub : public keyboard::KeyboardControllerProxy {
public:
KeyboardControllerProxyStub();
- virtual ~KeyboardControllerProxyStub();
+ ~KeyboardControllerProxyStub() override;
- virtual bool HasKeyboardWindow() const override;
- virtual aura::Window* GetKeyboardWindow() override;
+ bool HasKeyboardWindow() const override;
+ aura::Window* GetKeyboardWindow() override;
private:
// Overridden from keyboard::KeyboardControllerProxy:
- virtual content::BrowserContext* GetBrowserContext() override;
- virtual ui::InputMethod* GetInputMethod() override;
- virtual void RequestAudioInput(content::WebContents* web_contents,
+ content::BrowserContext* GetBrowserContext() override;
+ ui::InputMethod* GetInputMethod() override;
+ void RequestAudioInput(
+ content::WebContents* web_contents,
const content::MediaStreamRequest& request,
const content::MediaResponseCallback& callback) override;
- virtual void LoadSystemKeyboard() override;
- virtual void ReloadKeyboardIfNeeded() override;
+ void LoadSystemKeyboard() override;
+ void ReloadKeyboardIfNeeded() override;
aura::test::TestWindowDelegate delegate_;
scoped_ptr<aura::Window> keyboard_;
« ash/shell/bubble.cc ('K') | « ash/shell/context_menu.h ('k') | ash/shell/lock_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698