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

Side by Side Diff: content/browser/renderer_host/render_widget_host.h

Issue 7582009: [Mac] Rubber-banding on Lion. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <string> 10 #include <string>
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // Stops all existing hang monitor timeouts and assumes the renderer is 253 // Stops all existing hang monitor timeouts and assumes the renderer is
254 // responsive. 254 // responsive.
255 void StopHangMonitorTimeout(); 255 void StopHangMonitorTimeout();
256 256
257 // Forwards the given message to the renderer. These are called by the view 257 // Forwards the given message to the renderer. These are called by the view
258 // when it has received a message. 258 // when it has received a message.
259 virtual void ForwardMouseEvent(const WebKit::WebMouseEvent& mouse_event); 259 virtual void ForwardMouseEvent(const WebKit::WebMouseEvent& mouse_event);
260 // Called when a mouse click activates the renderer. 260 // Called when a mouse click activates the renderer.
261 virtual void OnMouseActivate(); 261 virtual void OnMouseActivate();
262 void ForwardWheelEvent(const WebKit::WebMouseWheelEvent& wheel_event); 262 void ForwardWheelEvent(const WebKit::WebMouseWheelEvent& wheel_event);
263 void ForwardGestureEvent(const WebKit::WebGestureEvent& gesture_event);
263 virtual void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event); 264 virtual void ForwardKeyboardEvent(const NativeWebKeyboardEvent& key_event);
264 virtual void ForwardTouchEvent(const WebKit::WebTouchEvent& touch_event); 265 virtual void ForwardTouchEvent(const WebKit::WebTouchEvent& touch_event);
265 266
266 267
267 // Update the text direction of the focused input element and notify it to a 268 // Update the text direction of the focused input element and notify it to a
268 // renderer process. 269 // renderer process.
269 // These functions have two usage scenarios: changing the text direction 270 // These functions have two usage scenarios: changing the text direction
270 // from a menu (as Safari does), and; changing the text direction when a user 271 // from a menu (as Safari does), and; changing the text direction when a user
271 // presses a set of keys (as IE and Firefox do). 272 // presses a set of keys (as IE and Firefox do).
272 // 1. Change the text direction from a menu. 273 // 1. Change the text direction from a menu.
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 ignore_input_events_ = ignore_input_events; 360 ignore_input_events_ = ignore_input_events;
360 } 361 }
361 bool ignore_input_events() const { 362 bool ignore_input_events() const {
362 return ignore_input_events_; 363 return ignore_input_events_;
363 } 364 }
364 365
365 // Activate deferred plugin handles. 366 // Activate deferred plugin handles.
366 void ActivateDeferredPluginHandles(); 367 void ActivateDeferredPluginHandles();
367 368
368 const gfx::Point& last_scroll_offset() const { return last_scroll_offset_; } 369 const gfx::Point& last_scroll_offset() const { return last_scroll_offset_; }
370 const gfx::Size& contents_size() const { return contents_size_; }
369 371
370 // Notification that the user has made some kind of input that could 372 // Notification that the user has made some kind of input that could
371 // perform an action. See OnUserGesture for more details. 373 // perform an action. See OnUserGesture for more details.
372 void StartUserGesture(); 374 void StartUserGesture();
373 375
374 protected: 376 protected:
375 // Internal implementation of the public Forward*Event() methods. 377 // Internal implementation of the public Forward*Event() methods.
376 void ForwardInputEvent(const WebKit::WebInputEvent& input_event, 378 void ForwardInputEvent(const WebKit::WebInputEvent& input_event,
377 int event_size, bool is_keyboard_shortcut); 379 int event_size, bool is_keyboard_shortcut);
378 380
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 545
544 // Set if we are waiting for a repaint ack for the view. 546 // Set if we are waiting for a repaint ack for the view.
545 bool repaint_ack_pending_; 547 bool repaint_ack_pending_;
546 548
547 // True when waiting for RESIZE_ACK. 549 // True when waiting for RESIZE_ACK.
548 bool resize_ack_pending_; 550 bool resize_ack_pending_;
549 551
550 // The current size of the RenderWidget. 552 // The current size of the RenderWidget.
551 gfx::Size current_size_; 553 gfx::Size current_size_;
552 554
555 // The current size of the underlying contents.
Nico 2011/08/08 17:30:53 Needs longer comment (what is this good for, how i
Alexei Svitkine (slow) 2011/08/08 18:31:31 Done.
556 gfx::Size contents_size_;
557
553 // The current reserved area of the RenderWidget where contents should not be 558 // The current reserved area of the RenderWidget where contents should not be
554 // rendered to draw the resize corner, sidebar mini tabs etc. 559 // rendered to draw the resize corner, sidebar mini tabs etc.
555 gfx::Rect current_reserved_rect_; 560 gfx::Rect current_reserved_rect_;
556 561
557 // The size we last sent as requested size to the renderer. |current_size_| 562 // The size we last sent as requested size to the renderer. |current_size_|
558 // is only updated once the resize message has been ack'd. This on the other 563 // is only updated once the resize message has been ack'd. This on the other
559 // hand is updated when the resize message is sent. This is very similar to 564 // hand is updated when the resize message is sent. This is very similar to
560 // |resize_ack_pending_|, but the latter is not set if the new size has width 565 // |resize_ack_pending_|, but the latter is not set if the new size has width
561 // or height zero, which is why we need this too. 566 // or height zero, which is why we need this too.
562 gfx::Size in_flight_size_; 567 gfx::Size in_flight_size_;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 673
669 std::vector<gfx::PluginWindowHandle> deferred_plugin_handles_; 674 std::vector<gfx::PluginWindowHandle> deferred_plugin_handles_;
670 675
671 // The last scroll offset of the render widget. 676 // The last scroll offset of the render widget.
672 gfx::Point last_scroll_offset_; 677 gfx::Point last_scroll_offset_;
673 678
674 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost); 679 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost);
675 }; 680 };
676 681
677 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 682 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698