| 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_FIREFOX2_IMPORTER_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ |
| 6 #define CHROME_BROWSER_FIREFOX2_IMPORTER_H_ | 6 #define CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/importer.h" | 8 #include "chrome/browser/importer/importer.h" |
| 9 | 9 |
| 10 class TemplateURL; | 10 class TemplateURL; |
| 11 | 11 |
| 12 // Importer for Mozilla Firefox 2. | 12 // Importer for Mozilla Firefox 2. |
| 13 class Firefox2Importer : public Importer { | 13 class Firefox2Importer : public Importer { |
| 14 public: | 14 public: |
| 15 Firefox2Importer(); | 15 Firefox2Importer(); |
| 16 virtual ~Firefox2Importer(); | 16 virtual ~Firefox2Importer(); |
| 17 | 17 |
| 18 // Importer methods. | 18 // Importer methods. |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 const GURL& favicon_data, | 101 const GURL& favicon_data, |
| 102 std::vector<history::ImportedFavIconUsage>* favicons); | 102 std::vector<history::ImportedFavIconUsage>* favicons); |
| 103 | 103 |
| 104 ProfileWriter* writer_; | 104 ProfileWriter* writer_; |
| 105 std::wstring source_path_; | 105 std::wstring source_path_; |
| 106 std::wstring app_path_; | 106 std::wstring app_path_; |
| 107 | 107 |
| 108 DISALLOW_EVIL_CONSTRUCTORS(Firefox2Importer); | 108 DISALLOW_EVIL_CONSTRUCTORS(Firefox2Importer); |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 #endif // CHROME_BROWSER_FIREFOX2_IMPORTER_H_ | 111 #endif // CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ |
| 112 | 112 |
| OLD | NEW |