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

Side by Side Diff: webkit/glue/webthread_impl.h

Issue 8741006: Add exports needed for glue to build as a component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to r112585 Created 9 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/webpreferences.h ('k') | webkit/glue/weburlloader_impl.h » ('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) 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 #include "webkit/glue/webkit_glue_export.h"
10 11
11 namespace webkit_glue { 12 namespace webkit_glue {
12 13
13 class WebThreadImpl : public WebKit::WebThread { 14 class WebThreadImpl : public WebKit::WebThread {
14 public: 15 public:
15 WebThreadImpl(const char* name); 16 WEBKIT_GLUE_EXPORT WebThreadImpl(const char* name);
16 virtual ~WebThreadImpl(); 17 WEBKIT_GLUE_EXPORT virtual ~WebThreadImpl();
17 18
18 virtual void postTask(Task* task) OVERRIDE; 19 virtual void postTask(Task* task) OVERRIDE;
19 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; 20 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE;
20 21
21 MessageLoop* message_loop() const { return thread_->message_loop(); } 22 MessageLoop* message_loop() const { return thread_->message_loop(); }
22 23
23 protected: 24 protected:
24 scoped_ptr<base::Thread> thread_; 25 scoped_ptr<base::Thread> thread_;
25 }; 26 };
26 27
27 class WebThreadImplForMessageLoop : public WebKit::WebThread { 28 class WebThreadImplForMessageLoop : public WebKit::WebThread {
28 public: 29 public:
29 WebThreadImplForMessageLoop(base::MessageLoopProxy* message_loop); 30 WebThreadImplForMessageLoop(base::MessageLoopProxy* message_loop);
30 virtual ~WebThreadImplForMessageLoop(); 31 virtual ~WebThreadImplForMessageLoop();
31 32
32 virtual void postTask(Task* task) OVERRIDE; 33 virtual void postTask(Task* task) OVERRIDE;
33 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; 34 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE;
34 35
35 protected: 36 protected:
36 scoped_refptr<base::MessageLoopProxy> message_loop_; 37 scoped_refptr<base::MessageLoopProxy> message_loop_;
37 }; 38 };
38 39
39 } // namespace webkit_glue 40 } // namespace webkit_glue
40 41
41 #endif 42 #endif
OLDNEW
« no previous file with comments | « webkit/glue/webpreferences.h ('k') | webkit/glue/weburlloader_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698