| 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 551b3fb5433768bb57f0a0e300dfa29fac7615c0..b40ab9ae536acf71efaac67ff3d7165bc81a0c13 100644
|
| --- a/chrome/browser/ui/webui/options/handler_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/handler_options_handler.cc
|
| @@ -92,9 +92,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(new base::StringValue(handler->protocol()));
|
| + handlerValue->Append(new base::StringValue(handler->url().spec()));
|
| + handlerValue->Append(new base::StringValue(handler->title()));
|
| handler_list->Append(handlerValue);
|
| }
|
| }
|
|
|