| Index: chrome/browser/importer/profile_import_process_client.h
|
| diff --git a/chrome/browser/importer/profile_import_process_client.h b/chrome/browser/importer/profile_import_process_client.h
|
| index 25e6c59fca15c3375fe2c90983e0c4e91ff9fd15..9607a4fc65064cc600a7694d94582855a96d5a91 100644
|
| --- a/chrome/browser/importer/profile_import_process_client.h
|
| +++ b/chrome/browser/importer/profile_import_process_client.h
|
| @@ -32,8 +32,8 @@ struct PasswordForm;
|
| // process in order to get results back from the process host. The
|
| // ProfileImportProcessHost calls the client's functions on the thread passed to
|
| // it when it's created.
|
| -class ProfileImportProcessClient :
|
| - public base::RefCountedThreadSafe<ProfileImportProcessClient> {
|
| +class ProfileImportProcessClient
|
| + : public base::RefCountedThreadSafe<ProfileImportProcessClient> {
|
| public:
|
| ProfileImportProcessClient();
|
|
|
| @@ -56,10 +56,9 @@ class ProfileImportProcessClient :
|
|
|
| virtual void OnHomePageImportReady(const GURL& home_page);
|
|
|
| - virtual void OnBookmarksImportStart(
|
| - const string16& first_folder_name,
|
| - int options,
|
| - size_t total_bookmarks_count);
|
| + virtual void OnBookmarksImportStart(const string16& first_folder_name,
|
| + int options,
|
| + size_t total_bookmarks_count);
|
| virtual void OnBookmarksImportGroup(
|
| const std::vector<ProfileWriter::BookmarkEntry>& bookmarks);
|
|
|
|
|