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

Unified Diff: chrome/browser/importer/in_process_importer_bridge.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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/importer/in_process_importer_bridge.h
diff --git a/chrome/browser/importer/in_process_importer_bridge.h b/chrome/browser/importer/in_process_importer_bridge.h
index 3cfb19f17d299e62b93b67164332f15dca7dc40b..b64845ff1ca51a229a45f012a04ed2277e8fe797 100644
--- a/chrome/browser/importer/in_process_importer_bridge.h
+++ b/chrome/browser/importer/in_process_importer_bridge.h
@@ -34,46 +34,42 @@ class InProcessImporterBridge : public ImporterBridge {
base::WeakPtr<ExternalProcessImporterHost> host);
// Begin ImporterBridge implementation:
- virtual void AddBookmarks(
- const std::vector<ImportedBookmarkEntry>& bookmarks,
- const base::string16& first_folder_name) override;
+ void AddBookmarks(const std::vector<ImportedBookmarkEntry>& bookmarks,
+ const base::string16& first_folder_name) override;
- virtual void AddHomePage(const GURL& home_page) override;
+ void AddHomePage(const GURL& home_page) override;
#if defined(OS_WIN)
virtual void AddIE7PasswordInfo(
const importer::ImporterIE7PasswordInfo& password_info) override;
#endif
- virtual void SetFavicons(
- const std::vector<ImportedFaviconUsage>& favicons) override;
+ void SetFavicons(const std::vector<ImportedFaviconUsage>& favicons) override;
- virtual void SetHistoryItems(const std::vector<ImporterURLRow>& rows,
- importer::VisitSource visit_source) override;
+ void SetHistoryItems(const std::vector<ImporterURLRow>& rows,
+ importer::VisitSource visit_source) override;
- virtual void SetKeywords(
- const std::vector<importer::URLKeywordInfo>& url_keywords,
- bool unique_on_host_and_path) override;
+ void SetKeywords(const std::vector<importer::URLKeywordInfo>& url_keywords,
+ bool unique_on_host_and_path) override;
- virtual void SetFirefoxSearchEnginesXMLData(
+ void SetFirefoxSearchEnginesXMLData(
const std::vector<std::string>& search_engine_data) override;
- virtual void SetPasswordForm(
- const autofill::PasswordForm& form) override;
+ void SetPasswordForm(const autofill::PasswordForm& form) override;
- virtual void SetAutofillFormData(
+ void SetAutofillFormData(
const std::vector<ImporterAutofillFormDataEntry>& entries) override;
- virtual void NotifyStarted() override;
- virtual void NotifyItemStarted(importer::ImportItem item) override;
- virtual void NotifyItemEnded(importer::ImportItem item) override;
- virtual void NotifyEnded() override;
+ void NotifyStarted() override;
+ void NotifyItemStarted(importer::ImportItem item) override;
+ void NotifyItemEnded(importer::ImportItem item) override;
+ void NotifyEnded() override;
- virtual base::string16 GetLocalizedString(int message_id) override;
+ base::string16 GetLocalizedString(int message_id) override;
// End ImporterBridge implementation.
private:
- virtual ~InProcessImporterBridge();
+ ~InProcessImporterBridge() override;
ProfileWriter* const writer_; // weak
const base::WeakPtr<ExternalProcessImporterHost> host_;
« no previous file with comments | « chrome/browser/importer/firefox_importer_browsertest.cc ('k') | chrome/browser/importer/in_process_importer_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698