summaryrefslogtreecommitdiffstats
path: root/chrome/browser/importer/mork_reader.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-22 18:05:00 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-22 18:05:00 +0000
commit750d1df01bae3a105313008e649d6a8e756bc316 (patch)
tree91a7fc834ff20b05ad6539ae77dfbf2ed750058a /chrome/browser/importer/mork_reader.h
parent5497a645dc2d609481a04328a96f3f9a4a13f46c (diff)
downloadchromium_src-750d1df01bae3a105313008e649d6a8e756bc316.zip
chromium_src-750d1df01bae3a105313008e649d6a8e756bc316.tar.gz
chromium_src-750d1df01bae3a105313008e649d6a8e756bc316.tar.bz2
Convert a bunch more of importer into FilePath.
I thought this would be a small job but I pulled the thread and it kept coming. :( BUG=24672 Review URL: http://codereview.chromium.org/650034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39610 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/importer/mork_reader.h')
-rw-r--r--chrome/browser/importer/mork_reader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/importer/mork_reader.h b/chrome/browser/importer/mork_reader.h
index 5cd7833..cb61be5 100644
--- a/chrome/browser/importer/mork_reader.h
+++ b/chrome/browser/importer/mork_reader.h
@@ -50,6 +50,7 @@
#include "base/basictypes.h"
+class FilePath;
class ImporterBridge;
class MessageLoop;
class ProfileWriter;
@@ -93,7 +94,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 std::wstring& filename);
+ bool Read(const FilePath& filename);
// Returns the list of columns in the current table.
const MorkColumnList& columns() const { return columns_; }
@@ -161,7 +162,6 @@ class MorkReader {
};
// ImportHistoryFromFirefox2 is the main entry point to the importer.
-void ImportHistoryFromFirefox2(const std::wstring& file,
- ImporterBridge* bridge);
+void ImportHistoryFromFirefox2(const FilePath& file, ImporterBridge* bridge);
#endif // CHROME_BROWSER_IMPORTER_MORK_READER_H__