| Index: content/child/npapi/plugin_url_fetcher.cc
|
| diff --git a/content/child/npapi/plugin_url_fetcher.cc b/content/child/npapi/plugin_url_fetcher.cc
|
| index d339033a37ceb1e825a3f044e3c79ac411b17719..0cabff9798a240454920090b0b576970efb000a7 100644
|
| --- a/content/child/npapi/plugin_url_fetcher.cc
|
| +++ b/content/child/npapi/plugin_url_fetcher.cc
|
| @@ -284,7 +284,7 @@ void PluginURLFetcher::OnReceivedResponse(const ResourceResponseInfo& info) {
|
| base::Time temp;
|
| uint32 last_modified = 0;
|
| std::string headers;
|
| - if (info.headers) { // NULL for data: urls.
|
| + if (info.headers.get()) { // NULL for data: urls.
|
| if (info.headers->GetLastModifiedValue(&temp))
|
| last_modified = static_cast<uint32>(temp.ToDoubleT());
|
|
|
|
|