Index: chrome/test/automation/tab_proxy.cc |
=================================================================== |
--- chrome/test/automation/tab_proxy.cc (revision 31172) |
+++ chrome/test/automation/tab_proxy.cc (working copy) |
@@ -356,6 +356,15 @@ |
return *value != NULL; |
} |
+bool TabProxy::SetEnableExtensionAutomation( |
+ const std::vector<std::string>& functions_enabled) { |
+ if (!is_valid()) |
+ return false; |
+ |
+ return sender_->Send(new AutomationMsg_SetEnableExtensionAutomation( |
+ 0, handle_, functions_enabled)); |
+} |
+ |
bool TabProxy::GetConstrainedWindowCount(int* count) const { |
if (!is_valid()) |
return false; |