Chromium Code Reviews

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

Issue 2679003: Peek at the event queue for wheel events for gtk (Closed)
Patch Set: Change name of event routine Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 674 matching lines...)
685 // accessibility tree on demand when renderer accessibility is enabled. 685 // accessibility tree on demand when renderer accessibility is enabled.
686 bool document_loaded_; 686 bool document_loaded_;
687 687
688 // Keep track of if we've already requested the accessibility tree so 688 // Keep track of if we've already requested the accessibility tree so
689 // we don't do it more than once. 689 // we don't do it more than once.
690 bool requested_accessibility_tree_; 690 bool requested_accessibility_tree_;
691 691
692 // Optional video YUV layer for used for out-of-process compositing. 692 // Optional video YUV layer for used for out-of-process compositing.
693 scoped_ptr<VideoLayer> video_layer_; 693 scoped_ptr<VideoLayer> video_layer_;
694 694
695 // Set to true if we want to wait until at least one more time through
696 // the event loop to see if any additional wheel messages are coming in
697 // before sending the coalesced ones.
698 bool spin_runloop_before_sending_wheel_event_;
699
700 // The time the last wheel message was sent to the renderer.
701 base::TimeTicks last_wheel_message_time_;
702
703 // For running tasks.
704 ScopedRunnableMethodFactory<RenderWidgetHost> method_runner_;
705
706 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost); 695 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost);
707 }; 696 };
708 697
709 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 698 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »

Powered by Google App Engine