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

Unified Diff: chrome/browser/ui/app_list/app_list_syncable_service.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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: chrome/browser/ui/app_list/app_list_syncable_service.cc
diff --git a/chrome/browser/ui/app_list/app_list_syncable_service.cc b/chrome/browser/ui/app_list/app_list_syncable_service.cc
index 8f966897e30f12fb005960dbc42b11c2e239dfb3..a2e9334fb685f3aea034dcd537aab3583c6c871a 100644
--- a/chrome/browser/ui/app_list/app_list_syncable_service.cc
+++ b/chrome/browser/ui/app_list/app_list_syncable_service.cc
@@ -174,7 +174,7 @@ class AppListSyncableService::ModelObserver : public AppListModelObserver {
private:
// AppListModelObserver
- virtual void OnAppListItemAdded(AppListItem* item) OVERRIDE {
+ virtual void OnAppListItemAdded(AppListItem* item) override {
DCHECK(!adding_item_);
adding_item_ = item; // Ignore updates while adding an item.
VLOG(2) << owner_ << " OnAppListItemAdded: " << item->ToDebugString();
@@ -182,7 +182,7 @@ class AppListSyncableService::ModelObserver : public AppListModelObserver {
adding_item_ = NULL;
}
- virtual void OnAppListItemWillBeDeleted(AppListItem* item) OVERRIDE {
+ virtual void OnAppListItemWillBeDeleted(AppListItem* item) override {
DCHECK(!adding_item_);
VLOG(2) << owner_ << " OnAppListItemDeleted: " << item->ToDebugString();
// Don't sync folder removal in case the folder still exists on another
@@ -193,7 +193,7 @@ class AppListSyncableService::ModelObserver : public AppListModelObserver {
owner_->RemoveSyncItem(item->id());
}
- virtual void OnAppListItemUpdated(AppListItem* item) OVERRIDE {
+ virtual void OnAppListItemUpdated(AppListItem* item) override {
if (adding_item_) {
// Adding an item may trigger update notifications which should be
// ignored.
« no previous file with comments | « chrome/browser/ui/app_list/app_list_syncable_service.h ('k') | chrome/browser/ui/app_list/app_list_syncable_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698