| Index: chrome/test/automation/tab_proxy.h
|
| diff --git a/chrome/test/automation/tab_proxy.h b/chrome/test/automation/tab_proxy.h
|
| index b360b84bbb49d8c102b99666f38740f88f36999f..4efbb86f9aa827b7c241a4812b09cb0ea1002a65 100644
|
| --- a/chrome/test/automation/tab_proxy.h
|
| +++ b/chrome/test/automation/tab_proxy.h
|
| @@ -57,8 +57,7 @@ class TabProxy : public AutomationResourceProxy,
|
|
|
| TabProxy(AutomationMessageSender* sender,
|
| AutomationHandleTracker* tracker,
|
| - int handle)
|
| - : AutomationResourceProxy(tracker, sender, handle) {}
|
| + int handle);
|
|
|
| // Gets the current url of the tab.
|
| bool GetCurrentURL(GURL* url) const WARN_UNUSED_RESULT;
|
| @@ -410,7 +409,7 @@ class TabProxy : public AutomationResourceProxy,
|
| void OnMessageReceived(const IPC::Message& message);
|
| void OnChannelError();
|
| protected:
|
| - virtual ~TabProxy() {}
|
| + virtual ~TabProxy();
|
|
|
| // Override JavaScriptExecutionController methods.
|
| // Executes |script| and gets the response JSON. Returns true on success.
|
|
|