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

Side by Side Diff: chrome/utility/importer/external_process_importer_bridge.h

Issue 638863002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/utility (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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_ 5 #ifndef CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_
6 #define CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_ 6 #define CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 30 matching lines...) Expand all
41 // profile. 41 // profile.
42 class ExternalProcessImporterBridge : public ImporterBridge { 42 class ExternalProcessImporterBridge : public ImporterBridge {
43 public: 43 public:
44 ExternalProcessImporterBridge( 44 ExternalProcessImporterBridge(
45 const base::DictionaryValue& localized_strings, 45 const base::DictionaryValue& localized_strings,
46 IPC::Sender* sender, 46 IPC::Sender* sender,
47 base::TaskRunner* task_runner); 47 base::TaskRunner* task_runner);
48 48
49 // Begin ImporterBridge implementation: 49 // Begin ImporterBridge implementation:
50 virtual void AddBookmarks(const std::vector<ImportedBookmarkEntry>& bookmarks, 50 virtual void AddBookmarks(const std::vector<ImportedBookmarkEntry>& bookmarks,
51 const base::string16& first_folder_name) OVERRIDE; 51 const base::string16& first_folder_name) override;
52 52
53 virtual void AddHomePage(const GURL& home_page) OVERRIDE; 53 virtual void AddHomePage(const GURL& home_page) override;
54 54
55 #if defined(OS_WIN) 55 #if defined(OS_WIN)
56 virtual void AddIE7PasswordInfo( 56 virtual void AddIE7PasswordInfo(
57 const importer::ImporterIE7PasswordInfo& password_info) OVERRIDE; 57 const importer::ImporterIE7PasswordInfo& password_info) override;
58 #endif 58 #endif
59 59
60 virtual void SetFavicons( 60 virtual void SetFavicons(
61 const std::vector<ImportedFaviconUsage>& favicons) OVERRIDE; 61 const std::vector<ImportedFaviconUsage>& favicons) override;
62 62
63 virtual void SetHistoryItems(const std::vector<ImporterURLRow>& rows, 63 virtual void SetHistoryItems(const std::vector<ImporterURLRow>& rows,
64 importer::VisitSource visit_source) OVERRIDE; 64 importer::VisitSource visit_source) override;
65 65
66 virtual void SetKeywords( 66 virtual void SetKeywords(
67 const std::vector<importer::URLKeywordInfo>& url_keywords, 67 const std::vector<importer::URLKeywordInfo>& url_keywords,
68 bool unique_on_host_and_path) OVERRIDE; 68 bool unique_on_host_and_path) override;
69 69
70 virtual void SetFirefoxSearchEnginesXMLData( 70 virtual void SetFirefoxSearchEnginesXMLData(
71 const std::vector<std::string>& seach_engine_data) OVERRIDE; 71 const std::vector<std::string>& seach_engine_data) override;
72 72
73 virtual void SetPasswordForm( 73 virtual void SetPasswordForm(
74 const autofill::PasswordForm& form) OVERRIDE; 74 const autofill::PasswordForm& form) override;
75 75
76 virtual void SetAutofillFormData( 76 virtual void SetAutofillFormData(
77 const std::vector<ImporterAutofillFormDataEntry>& entries) OVERRIDE; 77 const std::vector<ImporterAutofillFormDataEntry>& entries) override;
78 78
79 virtual void NotifyStarted() OVERRIDE; 79 virtual void NotifyStarted() override;
80 virtual void NotifyItemStarted(importer::ImportItem item) OVERRIDE; 80 virtual void NotifyItemStarted(importer::ImportItem item) override;
81 virtual void NotifyItemEnded(importer::ImportItem item) OVERRIDE; 81 virtual void NotifyItemEnded(importer::ImportItem item) override;
82 virtual void NotifyEnded() OVERRIDE; 82 virtual void NotifyEnded() override;
83 83
84 virtual base::string16 GetLocalizedString(int message_id) OVERRIDE; 84 virtual base::string16 GetLocalizedString(int message_id) override;
85 // End ImporterBridge implementation. 85 // End ImporterBridge implementation.
86 86
87 private: 87 private:
88 virtual ~ExternalProcessImporterBridge(); 88 virtual ~ExternalProcessImporterBridge();
89 89
90 void Send(IPC::Message* message); 90 void Send(IPC::Message* message);
91 void SendInternal(IPC::Message* message); 91 void SendInternal(IPC::Message* message);
92 92
93 // Holds strings needed by the external importer because the resource 93 // Holds strings needed by the external importer because the resource
94 // bundle isn't available to the external process. 94 // bundle isn't available to the external process.
95 scoped_ptr<base::DictionaryValue> localized_strings_; 95 scoped_ptr<base::DictionaryValue> localized_strings_;
96 96
97 IPC::Sender* sender_; 97 IPC::Sender* sender_;
98 scoped_refptr<base::TaskRunner> task_runner_; 98 scoped_refptr<base::TaskRunner> task_runner_;
99 99
100 DISALLOW_COPY_AND_ASSIGN(ExternalProcessImporterBridge); 100 DISALLOW_COPY_AND_ASSIGN(ExternalProcessImporterBridge);
101 }; 101 };
102 102
103 #endif // CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_ 103 #endif // CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_
OLDNEW
« 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