| Index: chrome/browser/automation/testing_automation_provider.h
|
| ===================================================================
|
| --- chrome/browser/automation/testing_automation_provider.h (revision 154462)
|
| +++ chrome/browser/automation/testing_automation_provider.h (working copy)
|
| @@ -332,6 +332,12 @@
|
| base::DictionaryValue* args,
|
| IPC::Message* reply_message);
|
|
|
| + // Add an item to the history service.
|
| + // Uses the JSON interface for input/output.
|
| + void AddHistoryItem(Browser* browser,
|
| + base::DictionaryValue* args,
|
| + IPC::Message* reply_message);
|
| +
|
| // Invoke loading of template url model.
|
| // Uses the JSON interface for input/output.
|
| void LoadSearchEngineInfo(Browser* browser,
|
| @@ -608,6 +614,18 @@
|
| void IsFindInPageVisible(base::DictionaryValue* args,
|
| IPC::Message* reply_message);
|
|
|
| + // Returns information about translation for a given tab. Includes
|
| + // information about the translate bar if it is showing.
|
| + void GetTranslateInfo(Browser* browser,
|
| + base::DictionaryValue* args,
|
| + IPC::Message* reply_message);
|
| +
|
| + // Takes the specified action on the translate bar.
|
| + // Uses the JSON interface for input/output.
|
| + void SelectTranslateOption(Browser* browser,
|
| + base::DictionaryValue* args,
|
| + IPC::Message* reply_message);
|
| +
|
| // Signs in to sync using the given username and password.
|
| // Uses the JSON interface for input/output.
|
| void SignInToSync(Browser* browser,
|
|
|