| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
| 6 #define CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 6 #define CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" |
| 15 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
| 16 #include "base/time.h" | 16 #include "base/time.h" |
| 17 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 17 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
| 18 #include "chrome/browser/importer/importer_data_types.h" | 18 #include "chrome/common/importer_data_types.h" |
| 19 #include "chrome/browser/importer/importer_list.h" | 19 #include "chrome/browser/importer/importer_list.h" |
| 20 #include "chrome/browser/importer/profile_writer.h" | 20 #include "chrome/browser/importer/profile_writer.h" |
| 21 #include "chrome/common/notification_registrar.h" | 21 #include "chrome/common/notification_registrar.h" |
| 22 #include "gfx/native_widget_types.h" | 22 #include "gfx/native_widget_types.h" |
| 23 #include "googleurl/src/gurl.h" | 23 #include "googleurl/src/gurl.h" |
| 24 | 24 |
| 25 using importer::ImportItem; | 25 using importer::ImportItem; |
| 26 using importer::ProfileInfo; | 26 using importer::ProfileInfo; |
| 27 | 27 |
| 28 class ImporterBridge; | 28 class ImporterBridge; |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 // first run UI. | 278 // first run UI. |
| 279 void StartImportingWithUI(gfx::NativeWindow parent_window, | 279 void StartImportingWithUI(gfx::NativeWindow parent_window, |
| 280 int16 items, | 280 int16 items, |
| 281 ImporterHost* coordinator, | 281 ImporterHost* coordinator, |
| 282 const ProfileInfo& source_profile, | 282 const ProfileInfo& source_profile, |
| 283 Profile* target_profile, | 283 Profile* target_profile, |
| 284 ImportObserver* observer, | 284 ImportObserver* observer, |
| 285 bool first_run); | 285 bool first_run); |
| 286 | 286 |
| 287 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 287 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
| OLD | NEW |