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

Side by Side Diff: webkit/glue/webthread_impl.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef WEBKIT_GLUE_WEBTHREAD_IMPL_H_ 4 #ifndef WEBKIT_GLUE_WEBTHREAD_IMPL_H_
5 #define WEBKIT_GLUE_WEBTHREAD_IMPL_H_ 5 #define WEBKIT_GLUE_WEBTHREAD_IMPL_H_
6 6
7 #include "base/threading/thread.h" 7 #include "base/threading/thread.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebThread.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebThread.h"
10 10
11 namespace webkit_glue { 11 namespace webkit_glue {
12 12
13 class WebThreadImpl : public WebKit::WebThread { 13 class WebThreadImpl : public WebKit::WebThread {
14 public: 14 public:
15 WebThreadImpl(const char* name); 15 WebThreadImpl(const char* name);
16 virtual ~WebThreadImpl(); 16 virtual ~WebThreadImpl();
17 17
18 virtual void postTask(Task* task); 18 virtual void postTask(Task* task);
19 #ifdef WEBTHREAD_HAS_LONGLONG_CHANGE 19 #ifdef WEBTHREAD_HAS_LONGLONG_CHANGE
20 virtual void postDelayedTask(Task* task, long long delay_ms); 20 virtual void postDelayedTask(Task* task, long long delay_ms);
21 #else 21 #else
22 virtual void postDelayedTask(Task* task, int64 delay_ms); 22 virtual void postDelayedTask(Task* task, int64 delay_ms);
23 #endif 23 #endif
24 24
25 MessageLoop* message_loop() const { return thread_->message_loop(); }
26
25 protected: 27 protected:
26 scoped_ptr<base::Thread> thread_; 28 scoped_ptr<base::Thread> thread_;
27 }; 29 };
28 30
29 } // namespace webkit_glue 31 } // namespace webkit_glue
30 32
31 #endif 33 #endif
OLDNEW
« content/renderer/render_thread.cc ('K') | « content/renderer/render_widget.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698