| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 // Specified whether the compositor will run in its own thread. | 709 // Specified whether the compositor will run in its own thread. |
| 710 bool is_threaded_compositing_enabled_; | 710 bool is_threaded_compositing_enabled_; |
| 711 | 711 |
| 712 // Specifies whether overscroll notifications are forwarded to the host. | 712 // Specifies whether overscroll notifications are forwarded to the host. |
| 713 bool overscroll_notifications_enabled_; | 713 bool overscroll_notifications_enabled_; |
| 714 | 714 |
| 715 // The last set of rendering stats received from the browser. This is only | 715 // The last set of rendering stats received from the browser. This is only |
| 716 // received when using the --enable-gpu-benchmarking flag. | 716 // received when using the --enable-gpu-benchmarking flag. |
| 717 BrowserRenderingStats browser_rendering_stats_; | 717 BrowserRenderingStats browser_rendering_stats_; |
| 718 | 718 |
| 719 // The latency information for any current non-accelerated-compositing |
| 720 // frame. |
| 721 ui::LatencyInfo latency_info_; |
| 722 |
| 719 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; | 723 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; |
| 720 | 724 |
| 721 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 725 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 722 }; | 726 }; |
| 723 | 727 |
| 724 } // namespace content | 728 } // namespace content |
| 725 | 729 |
| 726 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 730 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |