| Index: chrome/browser/ui/webui/options/handler_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/handler_options_handler.cc b/chrome/browser/ui/webui/options/handler_options_handler.cc
|
| index 440ff23cbd29a975d0017274ab0c9317389f36ee..a620b39a2353e4eb6f39ed4746202f92b991cd37 100644
|
| --- a/chrome/browser/ui/webui/options/handler_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/handler_options_handler.cc
|
| @@ -73,9 +73,9 @@ static void GetHandlersAsListValue(
|
| ProtocolHandlerRegistry::ProtocolHandlerList::const_iterator handler;
|
| for (handler = handlers.begin(); handler != handlers.end(); ++handler) {
|
| ListValue* handlerValue = new ListValue();
|
| - handlerValue->Append(Value::CreateStringValue(handler->protocol()));
|
| - handlerValue->Append(Value::CreateStringValue(handler->url().spec()));
|
| - handlerValue->Append(Value::CreateStringValue(handler->title()));
|
| + handlerValue->Append(base::StringValue::New(handler->protocol()));
|
| + handlerValue->Append(base::StringValue::New(handler->url().spec()));
|
| + handlerValue->Append(base::StringValue::New(handler->title()));
|
| handler_list->Append(handlerValue);
|
| }
|
| }
|
|
|