Index: chrome/browser/extensions/webstore_installer_test.h |
diff --git a/chrome/browser/extensions/webstore_installer_test.h b/chrome/browser/extensions/webstore_installer_test.h |
index 9dff96423cdccc9e00917e4fb6df2af7f0614e19..a70e35afd097d7feb9f71b0e3651dbc04f711513 100644 |
--- a/chrome/browser/extensions/webstore_installer_test.h |
+++ b/chrome/browser/extensions/webstore_installer_test.h |
@@ -13,7 +13,11 @@ |
namespace base { |
class CommandLine; |
-} // namespace base |
+} |
+ |
+namespace contents { |
+class WebContents; |
+} |
class WebstoreInstallerTest : public ExtensionBrowserTest { |
public: |
@@ -34,6 +38,9 @@ class WebstoreInstallerTest : public ExtensionBrowserTest { |
void RunTest(const std::string& test_function_name); |
+ void RunTest(content::WebContents* web_contents, |
+ const std::string& test_function_name); |
+ |
// Passes |i| to |test_function_name|, and expects that function to |
// return one of "FAILED", "KEEPGOING" or "DONE". KEEPGOING should be |
// returned if more tests remain to be run and the current test succeeded, |