| Index: chrome/browser/extensions/devtools_util.cc
|
| diff --git a/chrome/browser/extensions/devtools_util.cc b/chrome/browser/extensions/devtools_util.cc
|
| index 28e47906ca352367583a935b7c39a677026ae3e0..8f75ac74c20ba09f5b45c96704b7ee24e903176c 100644
|
| --- a/chrome/browser/extensions/devtools_util.cc
|
| +++ b/chrome/browser/extensions/devtools_util.cc
|
| @@ -28,8 +28,8 @@ void InspectExtensionHost(ExtensionHost* host) {
|
| void InspectBackgroundPage(const Extension* extension, Profile* profile) {
|
| DCHECK(extension);
|
| ExtensionSystem* system = ExtensionSystem::Get(profile);
|
| - ExtensionHost* host =
|
| - system->process_manager()->GetBackgroundHostForExtension(extension->id());
|
| + ExtensionHost* host = ProcessManager::Get(profile)
|
| + ->GetBackgroundHostForExtension(extension->id());
|
| if (host) {
|
| InspectExtensionHost(host);
|
| } else {
|
|
|