| OLD | NEW |
| 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...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |