| 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_FIREFOX3_IMPORTER_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ |
| 6 #define CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ | 6 #define CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/file_path.h" | 14 #include "base/file_path.h" |
| 15 #include "chrome/browser/importer/importer.h" | 15 #include "chrome/browser/importer/importer.h" |
| 16 #include "chrome/browser/importer/importer_data_types.h" | 16 #include "chrome/common/importer_data_types.h" |
| 17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 18 | 18 |
| 19 struct sqlite3; | 19 struct sqlite3; |
| 20 | 20 |
| 21 // Importer for Mozilla Firefox 3. | 21 // Importer for Mozilla Firefox 3. |
| 22 // Firefox 3 stores its persistent information in a new system called places. | 22 // Firefox 3 stores its persistent information in a new system called places. |
| 23 // http://wiki.mozilla.org/Places | 23 // http://wiki.mozilla.org/Places |
| 24 class Firefox3Importer : public Importer { | 24 class Firefox3Importer : public Importer { |
| 25 public: | 25 public: |
| 26 Firefox3Importer() { } | 26 Firefox3Importer() { } |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 const FaviconMap& favicon_map, | 78 const FaviconMap& favicon_map, |
| 79 std::vector<history::ImportedFavIconUsage>* favicons); | 79 std::vector<history::ImportedFavIconUsage>* favicons); |
| 80 | 80 |
| 81 FilePath source_path_; | 81 FilePath source_path_; |
| 82 FilePath app_path_; | 82 FilePath app_path_; |
| 83 | 83 |
| 84 DISALLOW_COPY_AND_ASSIGN(Firefox3Importer); | 84 DISALLOW_COPY_AND_ASSIGN(Firefox3Importer); |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 #endif // CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ | 87 #endif // CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ |
| OLD | NEW |