| Index: chrome/browser/extensions/extension_browsertest.h
|
| diff --git a/chrome/browser/extensions/extension_browsertest.h b/chrome/browser/extensions/extension_browsertest.h
|
| index ff930ea28fb9f7dc039d419362b5ec97bcce47cc..d1183cfcc498e0444d8780f59d411bd538381830 100644
|
| --- a/chrome/browser/extensions/extension_browsertest.h
|
| +++ b/chrome/browser/extensions/extension_browsertest.h
|
| @@ -22,11 +22,14 @@
|
| #include "content/public/browser/web_contents.h"
|
| #include "extensions/common/manifest.h"
|
|
|
| -class ExtensionProcessManager;
|
| class ExtensionService;
|
| class ExtensionSet;
|
| class Profile;
|
|
|
| +namespace extensions {
|
| +class ProcessManager;
|
| +}
|
| +
|
| // Base class for extension browser tests. Provides utilities for loading,
|
| // unloading, and installing extensions.
|
| class ExtensionBrowserTest : virtual public InProcessBrowserTest {
|
| @@ -262,9 +265,11 @@ class ExtensionBrowserTest : virtual public InProcessBrowserTest {
|
| // Looks for an ExtensionHost whose URL has the given path component
|
| // (including leading slash). Also verifies that the expected number of hosts
|
| // are loaded.
|
| - extensions::ExtensionHost* FindHostWithPath(ExtensionProcessManager* manager,
|
| - const std::string& path,
|
| - int expected_hosts);
|
| + extensions::ExtensionHost* FindHostWithPath(
|
| + extensions::ProcessManager* manager,
|
| + const std::string& path,
|
| + int expected_hosts);
|
| +
|
| // Returns
|
| // extensions::browsertest_util::ExecuteScriptInBackgroundPage(profile(),
|
| // extension_id, script).
|
|
|