Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1441)

Unified Diff: chrome/browser/importer/firefox3_importer.h

Issue 3221007: Fix a couple of firefox search engine import bugs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: added test, TODO Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/importer/firefox3_importer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/firefox3_importer.h
diff --git a/chrome/browser/importer/firefox3_importer.h b/chrome/browser/importer/firefox3_importer.h
index 23b6406258fe3411de10bb97773ad01fb0f6d6db..32a6a435ab29ad47723c84823800d5db104f3d3e 100644
--- a/chrome/browser/importer/firefox3_importer.h
+++ b/chrome/browser/importer/firefox3_importer.h
@@ -24,7 +24,7 @@ struct sqlite3;
// http://wiki.mozilla.org/Places
class Firefox3Importer : public Importer {
public:
- Firefox3Importer() { }
+ Firefox3Importer();
// Importer methods.
virtual void StartImport(importer::ProfileInfo profile_info,
@@ -34,7 +34,7 @@ class Firefox3Importer : public Importer {
private:
typedef std::map<int64, std::set<GURL> > FaviconMap;
- virtual ~Firefox3Importer() { }
+ virtual ~Firefox3Importer();
void ImportBookmarks();
void ImportPasswords();
@@ -82,6 +82,9 @@ class Firefox3Importer : public Importer {
FilePath source_path_;
FilePath app_path_;
+ // Stored because we can only access it from the UI thread.
+ std::string locale_;
+
DISALLOW_COPY_AND_ASSIGN(Firefox3Importer);
};
« no previous file with comments | « no previous file | chrome/browser/importer/firefox3_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698