diff options
Diffstat (limited to 'chrome/browser/importer/mork_reader.h')
-rw-r--r-- | chrome/browser/importer/mork_reader.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/importer/mork_reader.h b/chrome/browser/importer/mork_reader.h index d139477..05eed2c 100644 --- a/chrome/browser/importer/mork_reader.h +++ b/chrome/browser/importer/mork_reader.h @@ -49,9 +49,12 @@ #include "base/basictypes.h" -class FilePath; class ImporterBridge; +namespace base { +class FilePath; +} + // The nsMorkReader object allows a consumer to read in a mork-format // file and enumerate the rows that it contains. It does not provide // any functionality for modifying mork tables. @@ -90,7 +93,7 @@ class MorkReader { // Read in the given mork file. Returns true on success. // Note: currently, only single-table mork files are supported - bool Read(const FilePath& filename); + bool Read(const base::FilePath& filename); // Returns the list of columns in the current table. const MorkColumnList& columns() const { return columns_; } @@ -158,6 +161,6 @@ class MorkReader { }; // ImportHistoryFromFirefox2 is the main entry point to the importer. -void ImportHistoryFromFirefox2(const FilePath& file, ImporterBridge* bridge); +void ImportHistoryFromFirefox2(const base::FilePath& file, ImporterBridge* bridge); #endif // CHROME_BROWSER_IMPORTER_MORK_READER_H_ |