Index: chrome/browser/ui/webui/options/import_data_handler.cc |
diff --git a/chrome/browser/ui/webui/options/import_data_handler.cc b/chrome/browser/ui/webui/options/import_data_handler.cc |
index c8682778e4d1fa08af4e9cd992fc3a8db63b5891..99eb2f6b49fde1d259f116a3595e2fbb957774de 100644 |
--- a/chrome/browser/ui/webui/options/import_data_handler.cc |
+++ b/chrome/browser/ui/webui/options/import_data_handler.cc |
@@ -183,17 +183,18 @@ void ImportDataHandler::InitializePage() { |
browser_profile->SetString("name", source_profile.importer_name); |
browser_profile->SetInteger("index", i); |
browser_profile->SetBoolean("history", |
- (browser_services & importer::HISTORY) != 0); |
+ (browser_services & importer::HISTORY) != 0); |
browser_profile->SetBoolean("favorites", |
- (browser_services & importer::FAVORITES) != 0); |
+ (browser_services & importer::FAVORITES) != 0); |
browser_profile->SetBoolean("passwords", |
- (browser_services & importer::PASSWORDS) != 0); |
- browser_profile->SetBoolean("search", |
- (browser_services & importer::SEARCH_ENGINES) != 0); |
- browser_profile->SetBoolean("autofill-form-data", |
+ (browser_services & importer::PASSWORDS) != 0); |
+ browser_profile->SetBoolean( |
+ "search", (browser_services & importer::SEARCH_ENGINES) != 0); |
+ browser_profile->SetBoolean( |
+ "autofill-form-data", |
(browser_services & importer::AUTOFILL_FORM_DATA) != 0); |
- |
- browser_profile->SetBoolean("show_bottom_bar", |
+ browser_profile->SetBoolean( |
+ "show_bottom_bar", |
Dan Beam
2014/09/23 05:55:35
if there's no functional change here (and it's jus
Nikhil
2014/09/23 06:00:26
Hmm, there is no functional change. But it was ide
Dan Beam
2014/09/23 18:41:32
it seems like it'd be pretty easy to run clang for
Nikhil
2014/09/29 06:10:43
Acknowledged.
|
#if defined(OS_MACOSX) |
source_profile.importer_type == importer::TYPE_SAFARI); |
#else |