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

Unified Diff: chrome/browser/ui/webui/options/import_data_handler.cc

Issue 587403002: Importer - Change const char* foo to const char foo[] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/utility/importer/firefox_importer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | chrome/utility/importer/firefox_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698