Index: chrome/browser/automation/testing_automation_provider.h |
diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h |
index a6a407cc74f0093430efcc24ffd189d193b0c9c8..9086d28d086c25605985ae1a814fe62a1bcf47ec 100644 |
--- a/chrome/browser/automation/testing_automation_provider.h |
+++ b/chrome/browser/automation/testing_automation_provider.h |
@@ -871,9 +871,9 @@ class TestingAutomationProvider : public AutomationProvider, |
base::DictionaryValue* args, |
IPC::Message* reply_message); |
- // Waits for all tabs to stop loading or a modal dialog to become active. |
- void WaitForAllTabsToStopLoading(base::DictionaryValue* args, |
- IPC::Message* reply_message); |
+ // Waits for all views to stop loading or a modal dialog to become active. |
+ void WaitForAllViewsToStopLoading(base::DictionaryValue* args, |
+ IPC::Message* reply_message); |
// Gets the browser and tab index of the given tab. Uses the JSON interface. |
// Either "tab_id" or "tab_handle" must be specified, but not both. "tab_id" |
@@ -1267,6 +1267,15 @@ class TestingAutomationProvider : public AutomationProvider, |
void UpdateExtensionsNow(base::DictionaryValue* args, |
IPC::Message* reply_message); |
+ // Determines whether the extension page action is visible in the given tab. |
+ // Example: |
+ // input: { "auto_id": { "type": 0, "id": "awoein" }, |
+ // "extension_id": "byzaaoiea", |
+ // } |
+ // output: none |
+ void IsPageActionVisible(base::DictionaryValue* args, |
+ IPC::Message* reply_message); |
+ |
// Creates a new |TestingAutomationProvider| that opens a server channel |
// for the given |channel_id|. |
// The server channel will be available for connection when this returns. |