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

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

Issue 15937016: Update refernces to Blink's Platform API (webkit) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/webthemeengine_impl_win.cc ('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) 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 #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 <map> 7 #include <map>
8 8
9 #include "base/threading/thread.h" 9 #include "base/threading/thread.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebThread.h" 11 #include "third_party/WebKit/public/platform/WebThread.h"
12 #include "webkit/glue/webkit_glue_export.h" 12 #include "webkit/glue/webkit_glue_export.h"
13 13
14 namespace webkit_glue { 14 namespace webkit_glue {
15 15
16 class WebThreadBase : public WebKit::WebThread { 16 class WebThreadBase : public WebKit::WebThread {
17 public: 17 public:
18 virtual ~WebThreadBase(); 18 virtual ~WebThreadBase();
19 19
20 virtual void addTaskObserver(TaskObserver* observer); 20 virtual void addTaskObserver(TaskObserver* observer);
21 virtual void removeTaskObserver(TaskObserver* observer); 21 virtual void removeTaskObserver(TaskObserver* observer);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 virtual void exitRunLoop(); 63 virtual void exitRunLoop();
64 64
65 private: 65 private:
66 virtual bool isCurrentThread() const OVERRIDE; 66 virtual bool isCurrentThread() const OVERRIDE;
67 scoped_refptr<base::MessageLoopProxy> message_loop_; 67 scoped_refptr<base::MessageLoopProxy> message_loop_;
68 }; 68 };
69 69
70 } // namespace webkit_glue 70 } // namespace webkit_glue
71 71
72 #endif 72 #endif
OLDNEW
« no previous file with comments | « webkit/glue/webthemeengine_impl_win.cc ('k') | webkit/glue/weburlloader_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698