Index: chrome/browser/automation/automation_provider_gtk.cc |
=================================================================== |
--- chrome/browser/automation/automation_provider_gtk.cc (revision 26702) |
+++ chrome/browser/automation/automation_provider_gtk.cc (working copy) |
@@ -9,6 +9,7 @@ |
#include "chrome/browser/gtk/browser_window_gtk.h" |
#include "chrome/browser/gtk/view_id_util.h" |
#include "chrome/common/gtk_util.h" |
+#include "chrome/test/automation/automation_messages.h" |
void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds, |
bool* success) { |
@@ -63,8 +64,16 @@ |
} |
} |
-void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); } |
+void AutomationProvider::ActivateWindow(int handle) { |
+ NOTIMPLEMENTED(); |
+} |
+void AutomationProvider::IsWindowMaximized(int handle, bool* is_maximized, |
+ bool* success) { |
+ *success = false; |
+ NOTIMPLEMENTED(); |
+} |
+ |
void AutomationProvider::GetFocusedViewID(int handle, int* view_id) { |
NOTIMPLEMENTED(); |
} |
@@ -84,3 +93,24 @@ |
*animating = false; |
NOTIMPLEMENTED(); |
} |
+ |
+void AutomationProvider::WindowSimulateDrag(int handle, |
+ std::vector<gfx::Point> drag_path, |
+ int flags, |
+ bool press_escape_en_route, |
+ IPC::Message* reply_message) { |
+ NOTIMPLEMENTED(); |
+ AutomationMsg_WindowDrag::WriteReplyParams(reply_message, false); |
+ Send(reply_message); |
+} |
+ |
+void AutomationProvider::TerminateSession(int handle, bool* success) { |
+ *success = false; |
+ NOTIMPLEMENTED(); |
+} |
+ |
+void AutomationProvider::GetWindowBounds(int handle, gfx::Rect* bounds, |
+ bool* result) { |
+ *result = false; |
+ NOTIMPLEMENTED(); |
+} |