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

Unified Diff: chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h

Issue 660343006: Standardize usage of virtual/override/final in chrome/browser/media_galleries (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/media_galleries/fileapi/safe_iapps_library_parser.h
diff --git a/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h b/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h
index 91a906951387d614b93ae17f4ee929f1b4c27cbc..4d940e16ba9111034c9e83a0e9e94200a889188a 100644
--- a/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h
+++ b/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h
@@ -59,7 +59,7 @@ class SafeIAppsLibraryParser : public content::UtilityProcessHostClient {
};
// content::UtilityProcessHostClient is ref-counted.
- virtual ~SafeIAppsLibraryParser();
+ ~SafeIAppsLibraryParser() override;
// Posts a task to start the XML parsing in the utility process.
void Start();
@@ -91,8 +91,8 @@ class SafeIAppsLibraryParser : public content::UtilityProcessHostClient {
// UtilityProcessHostClient implementation.
// Runs on the IO thread.
- virtual void OnProcessCrashed(int exit_code) override;
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ void OnProcessCrashed(int exit_code) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
base::FilePath library_file_path_;

Powered by Google App Engine
This is Rietveld 408576698