| Index: chrome/browser/ui/webui/options/import_data_handler.h
|
| diff --git a/chrome/browser/ui/webui/options/import_data_handler.h b/chrome/browser/ui/webui/options/import_data_handler.h
|
| index 58a41deb7f93b030a06a701c4fa8ffd2ae340aec..ec9da8da1580a68cef6732acbf6adf83cc7ebafa 100644
|
| --- a/chrome/browser/ui/webui/options/import_data_handler.h
|
| +++ b/chrome/browser/ui/webui/options/import_data_handler.h
|
| @@ -24,16 +24,15 @@ class ImportDataHandler : public OptionsPageUIHandler,
|
| public ui::SelectFileDialog::Listener {
|
| public:
|
| ImportDataHandler();
|
| - virtual ~ImportDataHandler();
|
| + ~ImportDataHandler() override;
|
|
|
| // OptionsPageUIHandler:
|
| - virtual void GetLocalizedValues(
|
| - base::DictionaryValue* localized_strings) override;
|
| - virtual void InitializeHandler() override;
|
| - virtual void InitializePage() override;
|
| + void GetLocalizedValues(base::DictionaryValue* localized_strings) override;
|
| + void InitializeHandler() override;
|
| + void InitializePage() override;
|
|
|
| // content::WebUIMessageHandler:
|
| - virtual void RegisterMessages() override;
|
| + void RegisterMessages() override;
|
|
|
| private:
|
| void StartImport(const importer::SourceProfile& source_profile,
|
| @@ -42,15 +41,15 @@ class ImportDataHandler : public OptionsPageUIHandler,
|
| void ImportData(const base::ListValue* args);
|
|
|
| // importer::ImporterProgressObserver:
|
| - virtual void ImportStarted() override;
|
| - virtual void ImportItemStarted(importer::ImportItem item) override;
|
| - virtual void ImportItemEnded(importer::ImportItem item) override;
|
| - virtual void ImportEnded() override;
|
| + void ImportStarted() override;
|
| + void ImportItemStarted(importer::ImportItem item) override;
|
| + void ImportItemEnded(importer::ImportItem item) override;
|
| + void ImportEnded() override;
|
|
|
| // ui::SelectFileDialog::Listener:
|
| - virtual void FileSelected(const base::FilePath& path,
|
| - int index,
|
| - void* params) override;
|
| + void FileSelected(const base::FilePath& path,
|
| + int index,
|
| + void* params) override;
|
|
|
| // Opens a file selection dialog to choose the bookmarks HTML file.
|
| void HandleChooseBookmarksFile(const base::ListValue* args);
|
|
|