diff options
author | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-24 07:43:07 +0000 |
---|---|---|
committer | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-24 07:43:07 +0000 |
commit | ff6c86ff44d49f340328fedcb87bb4eba9bda29a (patch) | |
tree | e3760199edf367efceb471f6038b871e3cf9d08d /chrome/browser/automation/testing_automation_provider.h | |
parent | b7392003761efc72983dae8f279f62eb93ddf752 (diff) | |
download | chromium_src-ff6c86ff44d49f340328fedcb87bb4eba9bda29a.zip chromium_src-ff6c86ff44d49f340328fedcb87bb4eba9bda29a.tar.gz chromium_src-ff6c86ff44d49f340328fedcb87bb4eba9bda29a.tar.bz2 |
Delete automation code needed by old (and deleted) ChromeDriver.
BUG=none
Review URL: https://chromiumcodereview.appspot.com/24396002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224949 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/testing_automation_provider.h')
-rw-r--r-- | chrome/browser/automation/testing_automation_provider.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h index 989ace7..5129527 100644 --- a/chrome/browser/automation/testing_automation_provider.h +++ b/chrome/browser/automation/testing_automation_provider.h @@ -934,31 +934,12 @@ class TestingAutomationProvider : public AutomationProvider, // output: { "ids": [213, 1] } void GetTabIds(base::DictionaryValue* args, IPC::Message* reply_message); - // Gets info about all open views. Each view ID is unique per session. - // Example: - // input: none - // output: { "views": [ - // { - // "auto_id": { "type": 0, "id": "awoein" }, - // "extension_id": "askjeoias3" // optional - // } - // ] - // } - void GetViews(base::DictionaryValue* args, IPC::Message* reply_message); - // Checks if the given tab ID refers to an open tab. // Example: // input: { "id": 41 } // output: { "is_valid": false } void IsTabIdValid(base::DictionaryValue* args, IPC::Message* reply_message); - // Checks if the given automation ID refers to an actual object. - // Example: - // input: { "auto_id": { "type": 0, "id": "awoein" } } - // output: { "does_exist": false } - void DoesAutomationObjectExist( - base::DictionaryValue* args, IPC::Message* reply_message); - // Closes the specified tab. // The pair |windex| and |tab_index| or the single |auto_id| must be given // to specify the tab. @@ -1182,13 +1163,6 @@ class TestingAutomationProvider : public AutomationProvider, void BringBrowserToFrontJSON(base::DictionaryValue* args, IPC::Message* message); - // Gets the version of ChromeDriver automation supported by this server. - // Example: - // input: none - // output: { "version": 1 } - void GetChromeDriverAutomationVersion(base::DictionaryValue* args, - IPC::Message* message); - // Determines whether the extension page action is visible in the given tab. // Example: // input: { "auto_id": { "type": 0, "id": "awoein" }, |