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

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

Issue 7647026: base: Add three helper functions to Values API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a typo Ceate -> Create 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/certificate_manager_handler.cc
diff --git a/chrome/browser/ui/webui/options/certificate_manager_handler.cc b/chrome/browser/ui/webui/options/certificate_manager_handler.cc
index fe507b519e5cc6789f2086526ebfb0174c8bafb2..5510ec2eb61dce3779b786e76d2c52f32a0cb464 100644
--- a/chrome/browser/ui/webui/options/certificate_manager_handler.cc
+++ b/chrome/browser/ui/webui/options/certificate_manager_handler.cc
@@ -953,9 +953,9 @@ void CertificateManagerHandler::ShowError(const std::string& title,
args.push_back(Value::CreateStringValue(title));
args.push_back(Value::CreateStringValue(error));
args.push_back(Value::CreateStringValue(l10n_util::GetStringUTF8(IDS_OK)));
- args.push_back(Value::CreateNullValue()); // cancelTitle
- args.push_back(Value::CreateNullValue()); // okCallback
- args.push_back(Value::CreateNullValue()); // cancelCallback
+ args.push_back(base::NullValue()); // cancelTitle
+ args.push_back(base::NullValue()); // okCallback
+ args.push_back(base::NullValue()); // cancelCallback
web_ui_->CallJavascriptFunction("AlertOverlay.show", args.get());
}

Powered by Google App Engine
This is Rietveld 408576698