| Index: chrome/test/automation/automation_json_requests.h
|
| diff --git a/chrome/test/automation/automation_json_requests.h b/chrome/test/automation/automation_json_requests.h
|
| index ada6d8d538f3a0d81df705e67055bf87183e6d71..5fe3bda33874937aa5f5b8c111fbfa63557a90f2 100644
|
| --- a/chrome/test/automation/automation_json_requests.h
|
| +++ b/chrome/test/automation/automation_json_requests.h
|
| @@ -317,4 +317,17 @@ bool SendGetChromeDriverAutomationVersion(
|
| int* version,
|
| std::string* error_msg) WARN_UNUSED_RESULT;
|
|
|
| +// Requests info about all installed extensions. Returns true on success.
|
| +bool SendGetExtensionsInfoJSONRequest(
|
| + AutomationMessageSender* sender,
|
| + base::ListValue* extensions_list,
|
| + std::string* error_msg) WARN_UNUSED_RESULT;
|
| +
|
| +// Requests that the given extension be installed. Returns true on success.
|
| +bool SendInstallExtensionJSONRequest(
|
| + AutomationMessageSender* sender,
|
| + const FilePath& path,
|
| + std::string* extension_id,
|
| + std::string* error_msg) WARN_UNUSED_RESULT;
|
| +
|
| #endif // CHROME_TEST_AUTOMATION_AUTOMATION_JSON_REQUESTS_H_
|
|
|