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

Unified Diff: ui/views/accessibility/ax_window_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
Index: ui/views/accessibility/ax_window_obj_wrapper.h
diff --git a/ui/views/accessibility/ax_window_obj_wrapper.h b/ui/views/accessibility/ax_window_obj_wrapper.h
index 14bf2a80f60193cf2b83ea21c5f50069cc8890ea..067b9273c20a781845cabfbd2a1d8b013ef43c74 100644
--- a/ui/views/accessibility/ax_window_obj_wrapper.h
+++ b/ui/views/accessibility/ax_window_obj_wrapper.h
@@ -19,17 +19,16 @@ class AXWindowObjWrapper : public AXAuraObjWrapper,
public aura::WindowObserver {
public:
explicit AXWindowObjWrapper(aura::Window* window);
- virtual ~AXWindowObjWrapper();
+ ~AXWindowObjWrapper() 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;
+ AXAuraObjWrapper* GetParent() override;
+ void GetChildren(std::vector<AXAuraObjWrapper*>* out_children) override;
+ void Serialize(ui::AXNodeData* out_node_data) override;
+ int32 GetID() override;
// WindowObserver overrides.
- virtual void OnWindowDestroying(aura::Window* window) override;
+ void OnWindowDestroying(aura::Window* window) override;
private:
aura::Window* window_;
« no previous file with comments | « ui/views/accessibility/ax_widget_obj_wrapper.h ('k') | ui/views/accessibility/native_view_accessibility_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698