| Index: chrome/browser/extensions/extension_protocols.cc
|
| diff --git a/chrome/browser/extensions/extension_protocols.cc b/chrome/browser/extensions/extension_protocols.cc
|
| index 3ecbc36960c901fc103e7e67ce6ac86e8153f65b..e84e305fec65a715a513b4351d4afcf06ed1bd82 100644
|
| --- a/chrome/browser/extensions/extension_protocols.cc
|
| +++ b/chrome/browser/extensions/extension_protocols.cc
|
| @@ -176,7 +176,7 @@ class GeneratedBackgroundPageJob : public net::URLRequestSimpleJob {
|
|
|
| *data = "<!DOCTYPE html>\n<body>\n";
|
| const std::vector<std::string>& background_scripts =
|
| - extensions::BackgroundInfo::GetBackgroundScripts(extension_);
|
| + extensions::BackgroundInfo::GetBackgroundScripts(extension_.get());
|
| for (size_t i = 0; i < background_scripts.size(); ++i) {
|
| *data += "<script src=\"";
|
| *data += background_scripts[i];
|
|
|