diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-22 18:05:00 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-22 18:05:00 +0000 |
commit | 750d1df01bae3a105313008e649d6a8e756bc316 (patch) | |
tree | 91a7fc834ff20b05ad6539ae77dfbf2ed750058a /chrome/browser/importer/firefox3_importer.h | |
parent | 5497a645dc2d609481a04328a96f3f9a4a13f46c (diff) | |
download | chromium_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/firefox3_importer.h')
-rw-r--r-- | chrome/browser/importer/firefox3_importer.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/importer/firefox3_importer.h b/chrome/browser/importer/firefox3_importer.h index 04baf49..fcdb898 100644 --- a/chrome/browser/importer/firefox3_importer.h +++ b/chrome/browser/importer/firefox3_importer.h @@ -11,6 +11,7 @@ #include <vector> #include "base/basictypes.h" +#include "base/file_path.h" #include "chrome/browser/importer/importer.h" #include "googleurl/src/gurl.h" @@ -40,7 +41,7 @@ class Firefox3Importer : public Importer { // Import the user's home page, unless it is set to default home page as // defined in browserconfig.properties. void ImportHomepage(); - void GetSearchEnginesXMLFiles(std::vector<std::wstring>* files); + void GetSearchEnginesXMLFiles(std::vector<FilePath>* files); // The struct stores the information about a bookmark item. struct BookmarkItem { @@ -76,8 +77,8 @@ class Firefox3Importer : public Importer { const FaviconMap& favicon_map, std::vector<history::ImportedFavIconUsage>* favicons); - std::wstring source_path_; - std::wstring app_path_; + FilePath source_path_; + FilePath app_path_; DISALLOW_COPY_AND_ASSIGN(Firefox3Importer); }; |