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

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

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 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
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 dabc43d602f42017bda4cd3cd1b6d983fb13befb..3566c51b672c47830e2ade3c6b0a99eb68436763 100644
--- a/chrome/browser/ui/webui/options/import_data_handler.cc
+++ b/chrome/browser/ui/webui/options/import_data_handler.cc
@@ -96,7 +96,7 @@ void ImportDataHandler::ImportData(const ListValue* args) {
uint16 import_services = (selected_items & supported_items);
if (import_services) {
- base::FundamentalValue state(true);
+ base::BooleanValue state(true);
web_ui_->CallJavascriptFunction("ImportDataOverlay.setImportingState",
state);
import_did_succeed_ = false;
@@ -166,7 +166,7 @@ void ImportDataHandler::ImportEnded() {
if (import_did_succeed_) {
web_ui_->CallJavascriptFunction("ImportDataOverlay.confirmSuccess");
} else {
- base::FundamentalValue state(false);
+ base::BooleanValue state(false);
web_ui_->CallJavascriptFunction("ImportDataOverlay.setImportingState",
state);
web_ui_->CallJavascriptFunction("ImportDataOverlay.dismiss");
« no previous file with comments | « chrome/browser/ui/webui/options/handler_options_handler.cc ('k') | chrome/browser/ui/webui/options/manage_profile_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698