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

Side by Side Diff: chrome/browser/importer/profile_import_process_client.cc

Issue 6979007: Many fixes to bookmark importing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Happy 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/profile_import_process_client.h" 5 #include "chrome/browser/importer/profile_import_process_client.h"
6 6
7 #include "chrome/browser/history/history_types.h" 7 #include "chrome/browser/history/history_types.h"
8 #include "chrome/browser/importer/profile_import_process_host.h" 8 #include "chrome/browser/importer/profile_import_process_host.h"
9 #include "chrome/browser/importer/profile_import_process_messages.h" 9 #include "chrome/browser/importer/profile_import_process_messages.h"
10 #include "chrome/browser/search_engines/template_url.h" 10 #include "chrome/browser/search_engines/template_url.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 void ProfileImportProcessClient::OnHistoryImportGroup( 43 void ProfileImportProcessClient::OnHistoryImportGroup(
44 const std::vector<history::URLRow>& history_rows_group, 44 const std::vector<history::URLRow>& history_rows_group,
45 int visit_source) { 45 int visit_source) {
46 } 46 }
47 47
48 void ProfileImportProcessClient::OnHomePageImportReady(const GURL& home_page) { 48 void ProfileImportProcessClient::OnHomePageImportReady(const GURL& home_page) {
49 } 49 }
50 50
51 void ProfileImportProcessClient::OnBookmarksImportStart( 51 void ProfileImportProcessClient::OnBookmarksImportStart(
52 const string16& first_folder_name, 52 const string16& first_folder_name,
53 int options,
54 size_t total_bookmarks_count) { 53 size_t total_bookmarks_count) {
55 } 54 }
56 55
57 void ProfileImportProcessClient::OnBookmarksImportGroup( 56 void ProfileImportProcessClient::OnBookmarksImportGroup(
58 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks) { 57 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks) {
59 } 58 }
60 59
61 void ProfileImportProcessClient::OnFaviconsImportStart( 60 void ProfileImportProcessClient::OnFaviconsImportStart(
62 size_t total_favicons_count) { 61 size_t total_favicons_count) {
63 } 62 }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 OnPasswordFormImportReady) 108 OnPasswordFormImportReady)
110 IPC_MESSAGE_HANDLER(ProfileImportProcessHostMsg_NotifyKeywordsReady, 109 IPC_MESSAGE_HANDLER(ProfileImportProcessHostMsg_NotifyKeywordsReady,
111 OnKeywordsImportReady) 110 OnKeywordsImportReady)
112 IPC_MESSAGE_UNHANDLED(handled = false) 111 IPC_MESSAGE_UNHANDLED(handled = false)
113 IPC_END_MESSAGE_MAP_EX() 112 IPC_END_MESSAGE_MAP_EX()
114 return handled; 113 return handled;
115 } 114 }
116 115
117 ProfileImportProcessClient::~ProfileImportProcessClient() { 116 ProfileImportProcessClient::~ProfileImportProcessClient() {
118 } 117 }
OLDNEW
« no previous file with comments | « chrome/browser/importer/profile_import_process_client.h ('k') | chrome/browser/importer/profile_import_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698