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

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

Issue 7600016: WebKitClient::createThread and associated implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For the trybots Created 9 years, 4 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
« no previous file with comments | « webkit/glue/webkitclient_impl.cc ('k') | webkit/glue/webthread_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
(Empty)
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
3 // found in the LICENSE file.
4 #ifndef WEBKIT_GLUE_WEBTHREAD_IMPL_H_
5 #define WEBKIT_GLUE_WEBTHREAD_IMPL_H_
6
7 #include "base/threading/thread.h"
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebThread.h"
9
10 namespace webkit_glue {
11
12 class WebThreadImpl : public WebKit::WebThread {
13 public:
14 WebThreadImpl(const char* name);
15 virtual ~WebThreadImpl();
16
17 virtual void postTask(Task* task) OVERRIDE;
18 virtual void postDelayedTask(Task* task, int64 delay_ms) OVERRIDE;
19
20 protected:
21 scoped_ptr<base::Thread> thread_;
22 };
23
24 } // namespace webkit_glue
25
26 #endif
OLDNEW
« no previous file with comments | « webkit/glue/webkitclient_impl.cc ('k') | webkit/glue/webthread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698