summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_browsertest.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_browsertest.h')
-rw-r--r--chrome/browser/extensions/extension_browsertest.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extension_browsertest.h b/chrome/browser/extensions/extension_browsertest.h
index c0534d1..a284607 100644
--- a/chrome/browser/extensions/extension_browsertest.h
+++ b/chrome/browser/extensions/extension_browsertest.h
@@ -20,6 +20,8 @@
class ExtensionBrowserTest
: public InProcessBrowserTest, public NotificationObserver {
protected:
+ ExtensionBrowserTest();
+
virtual void SetUpCommandLine(CommandLine* command_line);
bool LoadExtension(const FilePath& path);
@@ -89,6 +91,14 @@ class ExtensionBrowserTest
int expected_change);
bool WaitForExtensionHostsToLoad();
+
+ // When waiting for page action count to change, we wait until it reaches this
+ // value.
+ int target_page_action_count_;
+
+ // When waiting for visible page action count to change, we wait until it
+ // reaches this value.
+ int target_visible_page_action_count_;
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_