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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 scoped_ptr<InputRouter> input_router_; | 838 scoped_ptr<InputRouter> input_router_; |
839 | 839 |
840 scoped_ptr<TimeoutMonitor> hang_monitor_timeout_; | 840 scoped_ptr<TimeoutMonitor> hang_monitor_timeout_; |
841 | 841 |
842 #if defined(OS_WIN) | 842 #if defined(OS_WIN) |
843 std::list<HWND> dummy_windows_for_activation_; | 843 std::list<HWND> dummy_windows_for_activation_; |
844 #endif | 844 #endif |
845 | 845 |
846 int64 last_input_number_; | 846 int64 last_input_number_; |
847 | 847 |
| 848 bool subscribe_uniform_enabled_; |
| 849 |
848 int next_browser_snapshot_id_; | 850 int next_browser_snapshot_id_; |
849 typedef std::map<int, | 851 typedef std::map<int, |
850 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap; | 852 base::Callback<void(const unsigned char*, size_t)> > PendingSnapshotMap; |
851 PendingSnapshotMap pending_browser_snapshots_; | 853 PendingSnapshotMap pending_browser_snapshots_; |
852 | 854 |
853 cc::RollingTimeDeltaHistory browser_composite_latency_history_; | 855 cc::RollingTimeDeltaHistory browser_composite_latency_history_; |
854 | 856 |
855 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 857 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
856 | 858 |
857 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 859 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
858 }; | 860 }; |
859 | 861 |
860 } // namespace content | 862 } // namespace content |
861 | 863 |
862 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 864 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |