diff options
Diffstat (limited to 'chrome/test/automation/browser_proxy.h')
-rw-r--r-- | chrome/test/automation/browser_proxy.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/test/automation/browser_proxy.h b/chrome/test/automation/browser_proxy.h index fdb7dc9..133a93d2 100644 --- a/chrome/test/automation/browser_proxy.h +++ b/chrome/test/automation/browser_proxy.h @@ -5,8 +5,8 @@ #ifndef CHROME_TEST_AUTOMATION_BROWSER_PROXY_H_ #define CHROME_TEST_AUTOMATION_BROWSER_PROXY_H_ -#include <string> #include <windows.h> +#include <string> #include "chrome/test/automation/automation_handle_tracker.h" class GURL; @@ -139,8 +139,12 @@ class BrowserProxy : public AutomationResourceProxy { // executed, false otherwise. bool RunCommand(int browser_command) const; + // Returns whether the Bookmark bar is visible and whether we are animating + // it into position. Returns false on failure. + bool GetBookmarkBarVisibility(bool* is_visible, bool* is_animating); + private: - DISALLOW_EVIL_CONSTRUCTORS(BrowserProxy); + DISALLOW_COPY_AND_ASSIGN(BrowserProxy); }; #endif // CHROME_TEST_AUTOMATION_BROWSER_PROXY_H_ |