| Index: chrome/browser/ui/webui/options/extension_settings_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/extension_settings_handler.cc b/chrome/browser/ui/webui/options/extension_settings_handler.cc
|
| index b7ac296308f366ef077ae0661c0b4a8b9a003cbe..2f4225f51bdf02d7b6feb69aba2788d9f4e6b957 100644
|
| --- a/chrome/browser/ui/webui/options/extension_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/extension_settings_handler.cc
|
| @@ -600,7 +600,7 @@ void ExtensionsDOMHandler::HandleLoadMessage(const ListValue* args) {
|
|
|
| void ExtensionsDOMHandler::ShowAlert(const std::string& message) {
|
| ListValue arguments;
|
| - arguments.Append(Value::CreateStringValue(message));
|
| + arguments.Append(base::StringValue::New(message));
|
| web_ui_->CallJavascriptFunction(L"alert", arguments);
|
| }
|
|
|
| @@ -701,7 +701,7 @@ void ExtensionsDOMHandler::FileSelected(const FilePath& path, int index,
|
| void* params) {
|
| // Add the extensions to the results structure.
|
| ListValue results;
|
| - results.Append(Value::CreateStringValue(path.value()));
|
| + results.Append(base::StringValue::New(path.value()));
|
| web_ui_->CallJavascriptFunction(L"window.handleFilePathSelected", results);
|
| }
|
|
|
|
|