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/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 Loading... |
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 Loading... |
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 } |
OLD | NEW |