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_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
6 #define CHROME_BROWSER_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 "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
14 #include "chrome/browser/bookmarks/bookmark_model.h" | 14 #include "chrome/browser/bookmarks/bookmark_model.h" |
15 #include "chrome/browser/history/history_types.h" | 15 #include "chrome/browser/history/history_types.h" |
16 #include "chrome/browser/ie7_password.h" | 16 #include "chrome/browser/ie7_password.h" |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 // if there's nothing to parent to. first_run is true if it's invoked in the | 346 // if there's nothing to parent to. first_run is true if it's invoked in the |
347 // first run UI. | 347 // first run UI. |
348 void StartImportingWithUI(HWND parent_window, | 348 void StartImportingWithUI(HWND parent_window, |
349 int16 items, | 349 int16 items, |
350 ImporterHost* coordinator, | 350 ImporterHost* coordinator, |
351 const ProfileInfo& source_profile, | 351 const ProfileInfo& source_profile, |
352 Profile* target_profile, | 352 Profile* target_profile, |
353 ImportObserver* observer, | 353 ImportObserver* observer, |
354 bool first_run); | 354 bool first_run); |
355 | 355 |
356 #endif // CHROME_BROWSER_IMPORTER_H__ | 356 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
357 | 357 |
OLD | NEW |