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

Unified Diff: chrome/browser/importer/external_process_importer_bridge.cc

Issue 7056033: Style cleanup in bookmarks import code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit tests Created 9 years, 7 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
Index: chrome/browser/importer/external_process_importer_bridge.cc
diff --git a/chrome/browser/importer/external_process_importer_bridge.cc b/chrome/browser/importer/external_process_importer_bridge.cc
index 8dfa65d498fe22a3e2bd1f14e42ab432de39442d..14fca1ad9acff3eec2d5742bf89244581a4ede5d 100644
--- a/chrome/browser/importer/external_process_importer_bridge.cc
+++ b/chrome/browser/importer/external_process_importer_bridge.cc
@@ -25,12 +25,13 @@ ExternalProcessImporterBridge::ExternalProcessImporterBridge(
localized_strings_.reset(localized_strings.DeepCopy());
}
-void ExternalProcessImporterBridge::AddBookmarkEntries(
+void ExternalProcessImporterBridge::AddBookmarks(
const std::vector<ProfileWriter::BookmarkEntry>& bookmarks,
const string16& first_folder_name,
int options) {
- profile_import_thread_->NotifyBookmarksImportReady(
- bookmarks, first_folder_name, options);
+ profile_import_thread_->NotifyBookmarksImportReady(bookmarks,
+ first_folder_name,
+ options);
}
void ExternalProcessImporterBridge::AddHomePage(const GURL& home_page) {

Powered by Google App Engine
This is Rietveld 408576698