diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-15 15:43:17 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-15 15:43:17 +0000 |
commit | e7192a95172a0a051704f6d60e96f2f41e67bf32 (patch) | |
tree | 5f090d6d2461482eb6fafa1988cabc16b19a8461 /chrome/browser/first_run | |
parent | 56f762c6574feac5c7bc6fb3f7c80ca140c73566 (diff) | |
download | chromium_src-e7192a95172a0a051704f6d60e96f2f41e67bf32.zip chromium_src-e7192a95172a0a051704f6d60e96f2f41e67bf32.tar.gz chromium_src-e7192a95172a0a051704f6d60e96f2f41e67bf32.tar.bz2 |
importer: Trivial change that changes NONE_IMPORTER to TYPE_UNKNOWN.
So while I'm here clean up the other importer types to make them prettier.
BUG=None
TEST=None
R=mirandac@chromium.org
Review URL: http://codereview.chromium.org/7387005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92696 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run')
-rw-r--r-- | chrome/browser/first_run/first_run.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc index d244007..1dfad25 100644 --- a/chrome/browser/first_run/first_run.cc +++ b/chrome/browser/first_run/first_run.cc @@ -441,7 +441,7 @@ int FirstRun::ImportFromFile(Profile* profile, const CommandLine& cmdline) { importer_host->set_headless(); importer::SourceProfile source_profile; - source_profile.importer_type = importer::BOOKMARKS_HTML; + source_profile.importer_type = importer::TYPE_BOOKMARKS_FILE; source_profile.source_path = file_path; FirstRunImportObserver importer_observer; |