OLD | NEW |
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 29 matching lines...) Expand all Loading... |
40 // internal bridge gathers the data from the IPC host and writes it to the | 40 // internal bridge gathers the data from the IPC host and writes it to the |
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 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 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 void SetFavicons(const std::vector<ImportedFaviconUsage>& favicons) override; |
61 const std::vector<ImportedFaviconUsage>& favicons) override; | |
62 | 61 |
63 virtual void SetHistoryItems(const std::vector<ImporterURLRow>& rows, | 62 void SetHistoryItems(const std::vector<ImporterURLRow>& rows, |
64 importer::VisitSource visit_source) override; | 63 importer::VisitSource visit_source) override; |
65 | 64 |
66 virtual void SetKeywords( | 65 void SetKeywords(const std::vector<importer::URLKeywordInfo>& url_keywords, |
67 const std::vector<importer::URLKeywordInfo>& url_keywords, | 66 bool unique_on_host_and_path) override; |
68 bool unique_on_host_and_path) override; | |
69 | 67 |
70 virtual void SetFirefoxSearchEnginesXMLData( | 68 void SetFirefoxSearchEnginesXMLData( |
71 const std::vector<std::string>& seach_engine_data) override; | 69 const std::vector<std::string>& seach_engine_data) override; |
72 | 70 |
73 virtual void SetPasswordForm( | 71 void SetPasswordForm(const autofill::PasswordForm& form) override; |
74 const autofill::PasswordForm& form) override; | |
75 | 72 |
76 virtual void SetAutofillFormData( | 73 void SetAutofillFormData( |
77 const std::vector<ImporterAutofillFormDataEntry>& entries) override; | 74 const std::vector<ImporterAutofillFormDataEntry>& entries) override; |
78 | 75 |
79 virtual void NotifyStarted() override; | 76 void NotifyStarted() override; |
80 virtual void NotifyItemStarted(importer::ImportItem item) override; | 77 void NotifyItemStarted(importer::ImportItem item) override; |
81 virtual void NotifyItemEnded(importer::ImportItem item) override; | 78 void NotifyItemEnded(importer::ImportItem item) override; |
82 virtual void NotifyEnded() override; | 79 void NotifyEnded() override; |
83 | 80 |
84 virtual base::string16 GetLocalizedString(int message_id) override; | 81 base::string16 GetLocalizedString(int message_id) override; |
85 // End ImporterBridge implementation. | 82 // End ImporterBridge implementation. |
86 | 83 |
87 private: | 84 private: |
88 virtual ~ExternalProcessImporterBridge(); | 85 ~ExternalProcessImporterBridge() override; |
89 | 86 |
90 void Send(IPC::Message* message); | 87 void Send(IPC::Message* message); |
91 void SendInternal(IPC::Message* message); | 88 void SendInternal(IPC::Message* message); |
92 | 89 |
93 // Holds strings needed by the external importer because the resource | 90 // Holds strings needed by the external importer because the resource |
94 // bundle isn't available to the external process. | 91 // bundle isn't available to the external process. |
95 scoped_ptr<base::DictionaryValue> localized_strings_; | 92 scoped_ptr<base::DictionaryValue> localized_strings_; |
96 | 93 |
97 IPC::Sender* sender_; | 94 IPC::Sender* sender_; |
98 scoped_refptr<base::TaskRunner> task_runner_; | 95 scoped_refptr<base::TaskRunner> task_runner_; |
99 | 96 |
100 DISALLOW_COPY_AND_ASSIGN(ExternalProcessImporterBridge); | 97 DISALLOW_COPY_AND_ASSIGN(ExternalProcessImporterBridge); |
101 }; | 98 }; |
102 | 99 |
103 #endif // CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_ | 100 #endif // CHROME_UTILITY_IMPORTER_EXTERNAL_PROCESS_IMPORTER_BRIDGE_H_ |
OLD | NEW |