| Index: chrome/browser/importer/mork_reader.h
|
| diff --git a/chrome/browser/importer/mork_reader.h b/chrome/browser/importer/mork_reader.h
|
| index d139477c333bc84f9ce645eac95467e3266edb23..05eed2c0b617d430527670c370b5149a05e5f332 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_
|
|
|