| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <set> | 8 #include <set> |
| 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/message_loop.h" | 14 #include "base/message_loop.h" |
| 15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
| 16 #include "chrome/browser/bookmarks/bookmark_model.h" | 16 #include "chrome/browser/bookmarks/bookmark_model.h" |
| 17 #include "chrome/browser/history/history_types.h" | 17 #include "chrome/browser/history/history_types.h" |
| 18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
| 19 #include "chrome/browser/password_manager/ie7_password.h" | 19 #include "chrome/browser/password_manager/ie7_password.h" |
| 20 #endif | 20 #endif |
| 21 #include "chrome/browser/profile.h" | 21 #include "chrome/browser/profile.h" |
| 22 #include "chrome/browser/template_url.h" | 22 #include "chrome/browser/search_engines/template_url.h" |
| 23 #include "chrome/common/notification_service.h" | 23 #include "chrome/common/notification_service.h" |
| 24 #include "googleurl/src/gurl.h" | 24 #include "googleurl/src/gurl.h" |
| 25 #include "webkit/glue/password_form.h" | 25 #include "webkit/glue/password_form.h" |
| 26 | 26 |
| 27 // An enumeration of the type of browsers that we support to import | 27 // An enumeration of the type of browsers that we support to import |
| 28 // settings and data from them. | 28 // settings and data from them. |
| 29 enum ProfileType { | 29 enum ProfileType { |
| 30 MS_IE = 0, | 30 MS_IE = 0, |
| 31 FIREFOX2, | 31 FIREFOX2, |
| 32 FIREFOX3, | 32 FIREFOX3, |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 void StartImportingWithUI(HWND parent_window, | 423 void StartImportingWithUI(HWND parent_window, |
| 424 int16 items, | 424 int16 items, |
| 425 ImporterHost* coordinator, | 425 ImporterHost* coordinator, |
| 426 const ProfileInfo& source_profile, | 426 const ProfileInfo& source_profile, |
| 427 Profile* target_profile, | 427 Profile* target_profile, |
| 428 ImportObserver* observer, | 428 ImportObserver* observer, |
| 429 bool first_run); | 429 bool first_run); |
| 430 #endif | 430 #endif |
| 431 | 431 |
| 432 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 432 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
| OLD | NEW |