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

Unified Diff: chrome/browser/ui/ash/accessibility/automation_manager_ash.h

Issue 686563002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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: chrome/browser/ui/ash/accessibility/automation_manager_ash.h
diff --git a/chrome/browser/ui/ash/accessibility/automation_manager_ash.h b/chrome/browser/ui/ash/accessibility/automation_manager_ash.h
index b860a73fff8c0c764a48c837122098458891ff39..2520ce7f6bbeac817a402e916253d337710f86c6 100644
--- a/chrome/browser/ui/ash/accessibility/automation_manager_ash.h
+++ b/chrome/browser/ui/ash/accessibility/automation_manager_ash.h
@@ -41,10 +41,10 @@ class AutomationManagerAsh : public extensions::AutomationActionAdapter {
ui::AXEvent event_type);
// AutomationActionAdapter implementation.
- virtual void DoDefault(int32 id) override;
- virtual void Focus(int32 id) override;
- virtual void MakeVisible(int32 id) override;
- virtual void SetSelection(int32 id, int32 start, int32 end) override;
+ void DoDefault(int32 id) override;
+ void Focus(int32 id) override;
+ void MakeVisible(int32 id) override;
+ void SetSelection(int32 id, int32 start, int32 end) override;
protected:
virtual ~AutomationManagerAsh();
oshima 2014/10/27 23:35:43 this one too?
dcheng 2014/10/27 23:37:26 This isn't an error--this means the parent class d
oshima 2014/10/27 23:53:29 Ok. It must have virtual dtor. thank you for fixin

Powered by Google App Engine
This is Rietveld 408576698