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

Unified Diff: chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (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/extensions/api/reading_list_private/reading_list_private_api.h
diff --git a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h
index feed7b52086c4f0f109464bf1e0c27d4f64ad7ac..938ad6b78e1d08bc327576b8b4d4ce4e87781be2 100644
--- a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h
+++ b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h
@@ -21,10 +21,10 @@ class ReadingListPrivateAddEntryFunction : public ChromeAsyncExtensionFunction {
READINGLISTPRIVATE_ADDENTRY)
protected:
- virtual ~ReadingListPrivateAddEntryFunction() {}
+ ~ReadingListPrivateAddEntryFunction() override {}
// ExtensionFunction:
- virtual bool RunAsync() override;
+ bool RunAsync() override;
};
class ReadingListPrivateRemoveEntryFunction
@@ -34,10 +34,10 @@ class ReadingListPrivateRemoveEntryFunction
READINGLISTPRIVATE_REMOVEENTRY)
protected:
- virtual ~ReadingListPrivateRemoveEntryFunction() {}
+ ~ReadingListPrivateRemoveEntryFunction() override {}
// ExtensionFunction:
- virtual bool RunSync() override;
+ bool RunSync() override;
};
class ReadingListPrivateGetEntriesFunction
@@ -47,10 +47,10 @@ class ReadingListPrivateGetEntriesFunction
READINGLISTPRIVATE_GETENTRIES)
protected:
- virtual ~ReadingListPrivateGetEntriesFunction() {}
+ ~ReadingListPrivateGetEntriesFunction() override {}
// ExtensionFunction:
- virtual bool RunSync() override;
+ bool RunSync() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698