| Index: chrome/test/automation/tab_proxy.cc
|
| ===================================================================
|
| --- chrome/test/automation/tab_proxy.cc (revision 31188)
|
| +++ chrome/test/automation/tab_proxy.cc (working copy)
|
| @@ -655,6 +655,16 @@
|
| return succeeded;
|
| }
|
|
|
| +bool TabProxy::ToggleEncodingAutoDetect() {
|
| + if (!is_valid())
|
| + return false;
|
| +
|
| + bool succeeded = false;
|
| + sender_->Send(new AutomationMsg_ToggleEncodingAutoDetect(0, handle_,
|
| + &succeeded));
|
| + return succeeded;
|
| +}
|
| +
|
| bool TabProxy::OverrideEncoding(const std::string& encoding) {
|
| if (!is_valid())
|
| return false;
|
| @@ -669,7 +679,6 @@
|
| void TabProxy::Reposition(HWND window, HWND window_insert_after, int left,
|
| int top, int width, int height, int flags,
|
| HWND parent_window) {
|
| -
|
| IPC::Reposition_Params params = {0};
|
| params.window = window;
|
| params.window_insert_after = window_insert_after;
|
|
|