| Index: chrome/browser/extensions/api/web_request/web_request_api.cc
|
| diff --git a/chrome/browser/extensions/api/web_request/web_request_api.cc b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| index a17684eb312a8fb6d61e35fa399383d200dd1979..56a840394cb6e4c86cf0ed4d3e1b7bf1817c779c 100644
|
| --- a/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| +++ b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| @@ -316,7 +316,7 @@ ListValue* GetRequestHeadersList(const net::HttpRequestHeaders& headers) {
|
| // Creates a StringValue with the status line of |headers|. If |headers| is
|
| // NULL, an empty string is returned. Ownership is passed to the caller.
|
| StringValue* GetStatusLine(net::HttpResponseHeaders* headers) {
|
| - return new StringValue(headers ? headers->GetStatusLine() : "");
|
| + return new StringValue(headers ? headers->GetStatusLine() : std::string());
|
| }
|
|
|
| void NotifyWebRequestAPIUsed(void* profile_id, const Extension* extension) {
|
|
|