Index: chrome/test/automation/tab_proxy.cc |
diff --git a/chrome/test/automation/tab_proxy.cc b/chrome/test/automation/tab_proxy.cc |
index 3888c79295a2162e04e7dc87aa5ab49ee699099d..d0d0426dff0d45e3836c4cb6a914a0452fed33e3 100644 |
--- a/chrome/test/automation/tab_proxy.cc |
+++ b/chrome/test/automation/tab_proxy.cc |
@@ -15,6 +15,13 @@ |
#include "chrome/test/automation/automation_proxy.h" |
#include "googleurl/src/gurl.h" |
+TabProxy::TabProxy(AutomationMessageSender* sender, |
+ AutomationHandleTracker* tracker, |
+ int handle) |
+ : AutomationResourceProxy(tracker, sender, handle) { |
+} |
+ |
+ |
bool TabProxy::GetTabTitle(std::wstring* title) const { |
if (!is_valid()) |
return false; |
@@ -799,6 +806,8 @@ void TabProxy::OnChannelError() { |
FOR_EACH_OBSERVER(TabProxyDelegate, observers_list_, OnChannelError(this)); |
} |
+TabProxy::~TabProxy() {} |
+ |
bool TabProxy::ExecuteJavaScriptAndGetJSON(const std::string& script, |
std::string* json) { |
if (!is_valid()) |