Chromium Code Reviews

Unified Diff: webkit/tools/test_shell/test_webview_delegate.cc

Issue 212053: Fake main window resizing in the test shell.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webkit/tools/test_shell/test_webview_delegate.cc
===================================================================
--- webkit/tools/test_shell/test_webview_delegate.cc (revision 26736)
+++ webkit/tools/test_shell/test_webview_delegate.cc (working copy)
@@ -894,6 +894,7 @@
top_loading_frame_(NULL),
page_id_(-1),
last_page_id_updated_(-1),
+ using_fake_rect_(false),
#if defined(OS_LINUX)
cursor_type_(GDK_X_CURSOR),
#endif
@@ -1074,3 +1075,12 @@
return L"frame (anonymous)";
}
}
+
+void TestWebViewDelegate::setFakeWindowRect(const WebRect& rect) {
+ fake_rect_ = rect;
+ using_fake_rect_ = true;
+}
+
+WebRect TestWebViewDelegate::getFakeWindowRect() {
+ return fake_rect_;
+}

Powered by Google App Engine