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_IE_IMPORTER_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_IE_IMPORTER_H_ |
6 #define CHROME_BROWSER_IE_IMPORTER_H_ | 6 #define CHROME_BROWSER_IMPORTER_IE_IMPORTER_H_ |
7 | 7 |
8 #include "chrome/browser/importer.h" | 8 #include "chrome/browser/importer/importer.h" |
9 | 9 |
10 class IEImporter : public Importer { | 10 class IEImporter : public Importer { |
11 public: | 11 public: |
12 IEImporter() {} | 12 IEImporter() {} |
13 virtual ~IEImporter() {} | 13 virtual ~IEImporter() {} |
14 | 14 |
15 // Importer methods. | 15 // Importer methods. |
16 virtual void StartImport(ProfileInfo browser_info, | 16 virtual void StartImport(ProfileInfo browser_info, |
17 uint16 items, | 17 uint16 items, |
18 ProfileWriter* writer, | 18 ProfileWriter* writer, |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 bool is_url; | 78 bool is_url; |
79 }; | 79 }; |
80 | 80 |
81 // IE does not have source path. It's used in unit tests only for | 81 // IE does not have source path. It's used in unit tests only for |
82 // providing a fake source. | 82 // providing a fake source. |
83 std::wstring source_path_; | 83 std::wstring source_path_; |
84 | 84 |
85 DISALLOW_EVIL_CONSTRUCTORS(IEImporter); | 85 DISALLOW_EVIL_CONSTRUCTORS(IEImporter); |
86 }; | 86 }; |
87 | 87 |
88 #endif // CHROME_BROWSER_IE_IMPORTER_H_ | 88 #endif // CHROME_BROWSER_IMPORTER_IE_IMPORTER_H_ |
89 | 89 |
OLD | NEW |