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

Unified Diff: chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.cc

Issue 1995113002: Rename WebUI::CallJavascriptFunction to WebUI::CallJavascriptFunctionUnsafe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/sync_file_system_internals/extension_statuses_handler.cc
diff --git a/chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.cc b/chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.cc
index 6daeeaf43cbc99ac9cfbef4b82ade0bb27c48d72..761ff406b7bb787787780ae118a3951eec53a808 100644
--- a/chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.cc
+++ b/chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.cc
@@ -108,8 +108,8 @@ void ExtensionStatusesHandler::GetExtensionStatuses(
void ExtensionStatusesHandler::DidGetExtensionStatuses(
const base::ListValue& list) {
- web_ui()->CallJavascriptFunction("ExtensionStatuses.onGetExtensionStatuses",
- list);
+ web_ui()->CallJavascriptFunctionUnsafe(
+ "ExtensionStatuses.onGetExtensionStatuses", list);
}
} // namespace syncfs_internals

Powered by Google App Engine
This is Rietveld 408576698