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

Unified Diff: content/renderer/render_thread.h

Issue 8089002: Input event filtering and compositor thread setup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/gpu/input_event_filter_unittest.cc ('k') | content/renderer/render_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread.h
===================================================================
--- content/renderer/render_thread.h (revision 104238)
+++ content/renderer/render_thread.h (working copy)
@@ -25,6 +25,7 @@
class AppCacheDispatcher;
class AudioInputMessageFilter;
class AudioMessageFilter;
+class CompositorThread;
class DBMessageFilter;
class DevToolsAgentFilter;
class FilePath;
@@ -147,6 +148,10 @@
void DoNotSuspendWebKitSharedTimer();
void DoNotNotifyWebKitOfModalLoop();
+ CompositorThread* compositor_thread() const {
+ return compositor_thread_.get();
+ }
+
AppCacheDispatcher* appcache_dispatcher() const {
return appcache_dispatcher_.get();
}
@@ -279,6 +284,8 @@
// Map of registered v8 extensions. The key is the extension name.
std::set<std::string> v8_extensions_;
+ scoped_ptr<CompositorThread> compositor_thread_;
+
ObserverList<content::RenderProcessObserver> observers_;
DISALLOW_COPY_AND_ASSIGN(RenderThread);
« no previous file with comments | « content/renderer/gpu/input_event_filter_unittest.cc ('k') | content/renderer/render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698