Index: chrome/common/automation_messages_internal.h |
diff --git a/chrome/common/automation_messages_internal.h b/chrome/common/automation_messages_internal.h |
index 4502a24a0b847b61ab0f5852fafc14e423b4f4ae..568eb8959a452d4cf2f8168a2205b1fae61360fc 100644 |
--- a/chrome/common/automation_messages_internal.h |
+++ b/chrome/common/automation_messages_internal.h |
@@ -1128,11 +1128,6 @@ IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_GetMetricEventDuration, |
IPC_MESSAGE_ROUTED1(AutomationMsg_RequestGoToHistoryEntryOffset, |
int) // numbers of entries (negative or positive) |
-// Silently install the extension in the given crx file. |
kkania
2011/08/03 16:01:56
Deprecate this instead, as seen below. Otherwise y
|
-IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_InstallExtension, |
- FilePath /* full path to crx file */, |
- AutomationMsg_ExtensionResponseValues) |
- |
// DEPRECATED MESSAGE - But we must leave this comment and message so as |
// not to perturb line numbers (see comment at top of file re __LINE__). |
IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_DeprecatedMessageTwo, |
@@ -1300,12 +1295,12 @@ IPC_SYNC_MESSAGE_CONTROL2_2(AutomationMsg_SendJSONRequest, |
std::string /* JSON response */, |
bool /* success */) |
-// Installs an extension from the crx file and returns its id. |
-// On error, |extension handle| will be 0. |
-IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_InstallExtensionAndGetHandle, |
- FilePath /* full path to crx file */, |
- bool /* with UI */, |
- int /* extension handle */) |
+// Installs an extension from a crx file or unpacked extension folder |
+// and returns its id. On error, |extension handle| will be 0. |
+IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_InstallExtension, |
+ std::string /* full path to crx or unpacked dir */, |
kkania
2011/08/03 16:01:56
hmm, in chromedriver we just started depending on
dtu
2011/08/03 19:31:53
I can move the string -> FilePath conversion into
kkania
2011/08/03 20:25:34
Renaming is an ok approach too.
|
+ bool /* with UI */, |
+ int /* extension handle */) |
// Waits for the next extension test result. Sets |test result| as the |
// received result and |message| as any accompanying message with the |