| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/importer/in_process_importer_bridge.h" | 5 #include "chrome/browser/importer/in_process_importer_bridge.h" |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "chrome/browser/importer/importer_host.h" | 8 #include "chrome/browser/importer/importer_host.h" |
| 9 #include "content/browser/browser_thread.h" | 9 #include "content/browser/browser_thread.h" |
| 10 #include "ui/base/l10n/l10n_util.h" | 10 #include "ui/base/l10n/l10n_util.h" |
| 11 #include "webkit/glue/password_form.h" | 11 #include "webkit/glue/password_form.h" |
| 12 | 12 |
| 13 #if defined(OS_WIN) | 13 #if defined(OS_WIN) |
| 14 #include "chrome/browser/password_manager/ie7_password.h" | 14 #include "chrome/browser/password_manager/ie7_password.h" |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 InProcessImporterBridge::InProcessImporterBridge(ProfileWriter* writer, | 17 InProcessImporterBridge::InProcessImporterBridge(ProfileWriter* writer, |
| 18 ImporterHost* host) | 18 ImporterHost* host) |
| 19 : writer_(writer), | 19 : writer_(writer), |
| 20 host_(host) { | 20 host_(host) { |
| 21 } | 21 } |
| 22 | 22 |
| 23 void InProcessImporterBridge::AddBookmarkEntries( | 23 void InProcessImporterBridge::AddBookmarks( |
| 24 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks, | 24 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks, |
| 25 const string16& first_folder_name, | 25 const string16& first_folder_name, |
| 26 int options) { | 26 int options) { |
| 27 BrowserThread::PostTask( | 27 BrowserThread::PostTask( |
| 28 BrowserThread::UI, FROM_HERE, | 28 BrowserThread::UI, FROM_HERE, |
| 29 NewRunnableMethod( | 29 NewRunnableMethod(writer_, &ProfileWriter::AddBookmarks, bookmarks, |
| 30 writer_, &ProfileWriter::AddBookmarkEntry, bookmarks, | 30 first_folder_name, options)); |
| 31 first_folder_name, options)); | |
| 32 } | 31 } |
| 33 | 32 |
| 34 void InProcessImporterBridge::AddHomePage(const GURL &home_page) { | 33 void InProcessImporterBridge::AddHomePage(const GURL &home_page) { |
| 35 BrowserThread::PostTask( | 34 BrowserThread::PostTask( |
| 36 BrowserThread::UI, FROM_HERE, | 35 BrowserThread::UI, FROM_HERE, |
| 37 NewRunnableMethod(writer_, &ProfileWriter::AddHomepage, home_page)); | 36 NewRunnableMethod(writer_, &ProfileWriter::AddHomepage, home_page)); |
| 38 } | 37 } |
| 39 | 38 |
| 40 #if defined(OS_WIN) | 39 #if defined(OS_WIN) |
| 41 void InProcessImporterBridge::AddIE7PasswordInfo( | 40 void InProcessImporterBridge::AddIE7PasswordInfo( |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 BrowserThread::PostTask( | 103 BrowserThread::PostTask( |
| 105 BrowserThread::UI, FROM_HERE, | 104 BrowserThread::UI, FROM_HERE, |
| 106 NewRunnableMethod(host_, &ImporterHost::NotifyImportEnded)); | 105 NewRunnableMethod(host_, &ImporterHost::NotifyImportEnded)); |
| 107 } | 106 } |
| 108 | 107 |
| 109 string16 InProcessImporterBridge::GetLocalizedString(int message_id) { | 108 string16 InProcessImporterBridge::GetLocalizedString(int message_id) { |
| 110 return l10n_util::GetStringUTF16(message_id); | 109 return l10n_util::GetStringUTF16(message_id); |
| 111 } | 110 } |
| 112 | 111 |
| 113 InProcessImporterBridge::~InProcessImporterBridge() {} | 112 InProcessImporterBridge::~InProcessImporterBridge() {} |
| OLD | NEW |