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

Unified Diff: chrome/utility/importer/external_process_importer_bridge.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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
« no previous file with comments | « chrome/utility/importer/bookmarks_file_importer.h ('k') | chrome/utility/importer/firefox_importer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/external_process_importer_bridge.h
diff --git a/chrome/utility/importer/external_process_importer_bridge.h b/chrome/utility/importer/external_process_importer_bridge.h
index a948d6458a1f2514649abd417bff5578c5d48e90..f20b2851f8554c5984e72aba51ca4103729afcd2 100644
--- a/chrome/utility/importer/external_process_importer_bridge.h
+++ b/chrome/utility/importer/external_process_importer_bridge.h
@@ -47,45 +47,42 @@ class ExternalProcessImporterBridge : public ImporterBridge {
base::TaskRunner* task_runner);
// 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>& seach_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 ~ExternalProcessImporterBridge();
+ ~ExternalProcessImporterBridge() override;
void Send(IPC::Message* message);
void SendInternal(IPC::Message* message);
« no previous file with comments | « chrome/utility/importer/bookmarks_file_importer.h ('k') | chrome/utility/importer/firefox_importer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698