OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_FIREFOX2_IMPORTER_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ |
6 #define CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ | 6 #define CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
11 #include "chrome/browser/importer/importer.h" | 11 #include "chrome/browser/importer/importer.h" |
12 #include "chrome/browser/importer/importer_data_types.h" | 12 #include "chrome/common/importer_data_types.h" |
13 #include "testing/gtest/include/gtest/gtest_prod.h" | 13 #include "testing/gtest/include/gtest/gtest_prod.h" |
14 | 14 |
15 class TemplateURL; | 15 class TemplateURL; |
16 | 16 |
17 // Importer for Mozilla Firefox 2. | 17 // Importer for Mozilla Firefox 2. |
18 class Firefox2Importer : public Importer { | 18 class Firefox2Importer : public Importer { |
19 public: | 19 public: |
20 Firefox2Importer(); | 20 Firefox2Importer(); |
21 | 21 |
22 // Importer methods. | 22 // Importer methods. |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 FilePath source_path_; | 122 FilePath source_path_; |
123 FilePath app_path_; | 123 FilePath app_path_; |
124 // If true, we only parse the bookmarks.html file specified as source_path_. | 124 // If true, we only parse the bookmarks.html file specified as source_path_. |
125 bool parsing_bookmarks_html_file_; | 125 bool parsing_bookmarks_html_file_; |
126 | 126 |
127 DISALLOW_EVIL_CONSTRUCTORS(Firefox2Importer); | 127 DISALLOW_EVIL_CONSTRUCTORS(Firefox2Importer); |
128 }; | 128 }; |
129 | 129 |
130 #endif // CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ | 130 #endif // CHROME_BROWSER_IMPORTER_FIREFOX2_IMPORTER_H_ |
OLD | NEW |