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
|