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

Unified Diff: ui/views/ime/null_input_method.h

Issue 648393006: 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
« no previous file with comments | « ui/views/ime/mock_input_method.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/ime/null_input_method.h
diff --git a/ui/views/ime/null_input_method.h b/ui/views/ime/null_input_method.h
index 29142e6d8bdca573a4cbdacb250537d432a20eb6..1ee130811edd0eaa764e5a65ea90d4bc831b9ca5 100644
--- a/ui/views/ime/null_input_method.h
+++ b/ui/views/ime/null_input_method.h
@@ -22,24 +22,24 @@ class NullInputMethod : public InputMethod {
NullInputMethod();
// Overridden from InputMethod:
- virtual void SetDelegate(internal::InputMethodDelegate* delegate) override;
- virtual void Init(Widget* widget) override;
- virtual void OnFocus() override;
- virtual void OnBlur() override;
- virtual bool OnUntranslatedIMEMessage(const base::NativeEvent& event,
- NativeEventResult* result) override;
- virtual void DispatchKeyEvent(const ui::KeyEvent& key) override;
- virtual void OnTextInputTypeChanged(View* view) override;
- virtual void OnCaretBoundsChanged(View* view) override;
- virtual void CancelComposition(View* view) override;
- virtual void OnInputLocaleChanged() override;
- virtual std::string GetInputLocale() override;
- virtual bool IsActive() override;
- virtual ui::TextInputClient* GetTextInputClient() const override;
- virtual ui::TextInputType GetTextInputType() const override;
- virtual bool IsCandidatePopupOpen() const override;
- virtual void ShowImeIfNeeded() override;
- virtual bool IsMock() const override;
+ void SetDelegate(internal::InputMethodDelegate* delegate) override;
+ void Init(Widget* widget) override;
+ void OnFocus() override;
+ void OnBlur() override;
+ bool OnUntranslatedIMEMessage(const base::NativeEvent& event,
+ NativeEventResult* result) override;
+ void DispatchKeyEvent(const ui::KeyEvent& key) override;
+ void OnTextInputTypeChanged(View* view) override;
+ void OnCaretBoundsChanged(View* view) override;
+ void CancelComposition(View* view) override;
+ void OnInputLocaleChanged() override;
+ std::string GetInputLocale() override;
+ bool IsActive() override;
+ ui::TextInputClient* GetTextInputClient() const override;
+ ui::TextInputType GetTextInputType() const override;
+ bool IsCandidatePopupOpen() const override;
+ void ShowImeIfNeeded() override;
+ bool IsMock() const override;
private:
DISALLOW_COPY_AND_ASSIGN(NullInputMethod);
« no previous file with comments | « ui/views/ime/mock_input_method.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698