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

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

Issue 634313002: Add mouse input forwarding to gpu service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test race Created 6 years 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_impl.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) 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
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_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698