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

Unified Diff: ui/views/accessibility/ax_view_obj_wrapper.h

Issue 679233002: 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 | « no previous file | ui/views/accessibility/ax_widget_obj_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/accessibility/ax_view_obj_wrapper.h
diff --git a/ui/views/accessibility/ax_view_obj_wrapper.h b/ui/views/accessibility/ax_view_obj_wrapper.h
index 7a768b76b18cfafa1e17832663227c7ec2db5dde..d8850d0d8aa280c5da42e825dbfdcf857ad7ed6d 100644
--- a/ui/views/accessibility/ax_view_obj_wrapper.h
+++ b/ui/views/accessibility/ax_view_obj_wrapper.h
@@ -14,18 +14,17 @@ class View;
class AXViewObjWrapper : public AXAuraObjWrapper {
public:
explicit AXViewObjWrapper(View* view);
- virtual ~AXViewObjWrapper();
+ ~AXViewObjWrapper() override;
// AXAuraObjWrapper overrides.
- virtual AXAuraObjWrapper* GetParent() override;
- virtual void GetChildren(
- std::vector<AXAuraObjWrapper*>* out_children) override;
- virtual void Serialize(ui::AXNodeData* out_node_data) override;
- virtual int32 GetID() override;
- virtual void DoDefault() override;
- virtual void Focus() override;
- virtual void MakeVisible() override;
- virtual void SetSelection(int32 start, int32 end) override;
+ AXAuraObjWrapper* GetParent() override;
+ void GetChildren(std::vector<AXAuraObjWrapper*>* out_children) override;
+ void Serialize(ui::AXNodeData* out_node_data) override;
+ int32 GetID() override;
+ void DoDefault() override;
+ void Focus() override;
+ void MakeVisible() override;
+ void SetSelection(int32 start, int32 end) override;
private:
View* view_;
« no previous file with comments | « no previous file | ui/views/accessibility/ax_widget_obj_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698