diff options
Diffstat (limited to 'chrome/test/automation/tab_proxy.h')
-rw-r--r-- | chrome/test/automation/tab_proxy.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/test/automation/tab_proxy.h b/chrome/test/automation/tab_proxy.h index 7693e60..9a5be9c 100644 --- a/chrome/test/automation/tab_proxy.h +++ b/chrome/test/automation/tab_proxy.h @@ -315,13 +315,13 @@ class TabProxy : public AutomationResourceProxy { const std::string& origin, const std::string& target); - // Retrieves the number of SSL related info-bars currently showing in |count|. - bool GetSSLInfoBarCount(int* count); + // Retrieves the number of info-bars currently showing in |count|. + bool GetInfoBarCount(int* count); - // Causes a click on the link of the info-bar at |info_bar_index|. If - // |wait_for_navigation| is true, this call does not return until a navigation - // has occured. - bool ClickSSLInfoBarLink(int info_bar_index, bool wait_for_navigation); + // Causes a click on the "accept" button of the info-bar at |info_bar_index|. + // If |wait_for_navigation| is true, this call does not return until a + // navigation has occured. + bool ClickInfoBarAccept(int info_bar_index, bool wait_for_navigation); // Retrieves the time at which the last navigation occured. This is intended // to be used with WaitForNavigation (see below). |