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_SAFARI_IMPORTER_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_SAFARI_IMPORTER_H_ |
6 #define CHROME_BROWSER_IMPORTER_SAFARI_IMPORTER_H_ | 6 #define CHROME_BROWSER_IMPORTER_SAFARI_IMPORTER_H_ |
7 | 7 |
8 #include "chrome/browser/importer/importer.h" | 8 #include "chrome/browser/importer/importer.h" |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/file_path.h" | 14 #include "base/file_path.h" |
15 #include "chrome/common/sqlite_utils.h" | 15 #include "chrome/common/sqlite_utils.h" |
16 #include "chrome/browser/importer/importer_data_types.h" | 16 #include "chrome/common/importer_data_types.h" |
17 #include "testing/gtest/include/gtest/gtest_prod.h" | 17 #include "testing/gtest/include/gtest/gtest_prod.h" |
18 | 18 |
19 #if __OBJC__ | 19 #if __OBJC__ |
20 @class NSDictionary; | 20 @class NSDictionary; |
21 @class NSString; | 21 @class NSString; |
22 #else | 22 #else |
23 class NSDictionary; | 23 class NSDictionary; |
24 class NSString; | 24 class NSString; |
25 #endif | 25 #endif |
26 | 26 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 void LoadFaviconData(sqlite3* db, | 91 void LoadFaviconData(sqlite3* db, |
92 const FaviconMap& favicon_map, | 92 const FaviconMap& favicon_map, |
93 std::vector<history::ImportedFavIconUsage>* favicons); | 93 std::vector<history::ImportedFavIconUsage>* favicons); |
94 | 94 |
95 FilePath library_dir_; | 95 FilePath library_dir_; |
96 | 96 |
97 DISALLOW_COPY_AND_ASSIGN(SafariImporter); | 97 DISALLOW_COPY_AND_ASSIGN(SafariImporter); |
98 }; | 98 }; |
99 | 99 |
100 #endif // CHROME_BROWSER_IMPORTER_SAFARI_IMPORTER_H_ | 100 #endif // CHROME_BROWSER_IMPORTER_SAFARI_IMPORTER_H_ |
OLD | NEW |