| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UTILITY_IMPORTER_FIREFOX3_IMPORTER_H_ |
| 6 #define CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ | 6 #define CHROME_UTILITY_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/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "chrome/browser/importer/importer.h" | 16 #include "chrome/utility/importer/importer.h" |
| 17 | 17 |
| 18 class GURL; | 18 class GURL; |
| 19 struct ImportedFaviconUsage; | 19 struct ImportedFaviconUsage; |
| 20 | 20 |
| 21 namespace sql { | 21 namespace sql { |
| 22 class Connection; | 22 class Connection; |
| 23 } | 23 } |
| 24 | 24 |
| 25 // Importer for Mozilla Firefox 3 and later. | 25 // Importer for Mozilla Firefox 3 and later. |
| 26 // Firefox 3 stores its persistent information in a new system called places. | 26 // Firefox 3 stores its persistent information in a new system called places. |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 base::FilePath app_path_; | 79 base::FilePath app_path_; |
| 80 | 80 |
| 81 #if defined(OS_POSIX) | 81 #if defined(OS_POSIX) |
| 82 // Stored because we can only access it from the UI thread. | 82 // Stored because we can only access it from the UI thread. |
| 83 std::string locale_; | 83 std::string locale_; |
| 84 #endif | 84 #endif |
| 85 | 85 |
| 86 DISALLOW_COPY_AND_ASSIGN(Firefox3Importer); | 86 DISALLOW_COPY_AND_ASSIGN(Firefox3Importer); |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 #endif // CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ | 89 #endif // CHROME_UTILITY_IMPORTER_FIREFOX3_IMPORTER_H_ |
| OLD | NEW |