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 <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 "app/gfx/native_widget_types.h" |
13 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
14 #include "base/gfx/native_widget_types.h" | |
15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
16 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 16 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
17 #include "chrome/browser/history/history_types.h" | 17 #include "chrome/browser/history/history_types.h" |
18 #include "chrome/browser/importer/importer_list.h" | 18 #include "chrome/browser/importer/importer_list.h" |
19 #include "chrome/browser/profile.h" | 19 #include "chrome/browser/profile.h" |
20 #include "chrome/common/notification_registrar.h" | 20 #include "chrome/common/notification_registrar.h" |
21 #include "googleurl/src/gurl.h" | 21 #include "googleurl/src/gurl.h" |
22 | 22 |
23 class ImporterBridge; | 23 class ImporterBridge; |
24 class MessageLoop; | 24 class MessageLoop; |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 // first run UI. | 383 // first run UI. |
384 void StartImportingWithUI(gfx::NativeWindow parent_window, | 384 void StartImportingWithUI(gfx::NativeWindow parent_window, |
385 int16 items, | 385 int16 items, |
386 ImporterHost* coordinator, | 386 ImporterHost* coordinator, |
387 const ProfileInfo& source_profile, | 387 const ProfileInfo& source_profile, |
388 Profile* target_profile, | 388 Profile* target_profile, |
389 ImportObserver* observer, | 389 ImportObserver* observer, |
390 bool first_run); | 390 bool first_run); |
391 | 391 |
392 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 392 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
OLD | NEW |