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

Unified Diff: athena/home/athena_start_page_view.h

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@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
« no previous file with comments | « athena/home/app_list_view_delegate.h ('k') | athena/home/athena_start_page_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/home/athena_start_page_view.h
diff --git a/athena/home/athena_start_page_view.h b/athena/home/athena_start_page_view.h
index 4e0f19d465e1bb651a0e362eb4a37c12848192b6..a98e9c2bb2a865ad11915fc057524b67491d293e 100644
--- a/athena/home/athena_start_page_view.h
+++ b/athena/home/athena_start_page_view.h
@@ -33,7 +33,7 @@ class ATHENA_EXPORT AthenaStartPageView
};
explicit AthenaStartPageView(app_list::AppListViewDelegate* delegate);
- virtual ~AthenaStartPageView();
+ ~AthenaStartPageView() override;
// Requests the focus on the search box in the start page view.
void RequestFocusOnSearchBox();
@@ -85,20 +85,18 @@ class ATHENA_EXPORT AthenaStartPageView
void OnSearchResultLayoutAnimationCompleted(bool should_show_search_results);
// views::View:
- virtual void Layout() override;
- virtual bool OnKeyPressed(const ui::KeyEvent& key_event) override;
+ void Layout() override;
+ bool OnKeyPressed(const ui::KeyEvent& key_event) override;
// app_list::SearchBoxViewDelegate:
- virtual void QueryChanged(app_list::SearchBoxView* sender) override;
+ void QueryChanged(app_list::SearchBoxView* sender) override;
// app_list::AppListItemListObserver:
- virtual void OnListItemAdded(size_t index,
- app_list::AppListItem* item) override;
- virtual void OnListItemRemoved(size_t index,
- app_list::AppListItem* item) override;
- virtual void OnListItemMoved(size_t from_index,
- size_t to_index,
- app_list::AppListItem* item) override;
+ void OnListItemAdded(size_t index, app_list::AppListItem* item) override;
+ void OnListItemRemoved(size_t index, app_list::AppListItem* item) override;
+ void OnListItemMoved(size_t from_index,
+ size_t to_index,
+ app_list::AppListItem* item) override;
// Not owned.
app_list::AppListViewDelegate* delegate_;
« no previous file with comments | « athena/home/app_list_view_delegate.h ('k') | athena/home/athena_start_page_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698