Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4176)

Unified Diff: chrome/renderer/render_widget.cc

Issue 21512: Hook up the resize rect for Mac and enable its use in the renderer (mac-only)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/cocoa/tab_strip_controller.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_widget.cc
===================================================================
--- chrome/renderer/render_widget.cc (revision 10014)
+++ chrome/renderer/render_widget.cc (working copy)
@@ -703,7 +703,12 @@
// This is disabled to verify if WebKit is responsible for the slow down
// that was witnessed in the page cycler tests when the resize corner
// code was commited...
+#if defined(OS_MACOSX)
MAD 2009/02/19 18:55:12 Can you move the comment above within the elif?
+ // ...we need it enabled on Mac so scrollbars are usable.
+ *rect = resizer_rect_;
+#elif defined(OS_WIN) || defined(OS_LINUX)
*rect = gfx::Rect(); // resizer_rect_;
+#endif
}
void RenderWidget::OnImeSetInputMode(bool is_active) {
« no previous file with comments | « chrome/browser/cocoa/tab_strip_controller.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698