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

Unified Diff: trunk/src/content/child/webthread_impl.h

Issue 326403005: Revert 275655 "Redirect HTML resource bytes directly to parser t..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/content/child/web_url_loader_impl.cc ('k') | trunk/src/content/content_child.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/content/child/webthread_impl.h
===================================================================
--- trunk/src/content/child/webthread_impl.h (revision 276493)
+++ trunk/src/content/child/webthread_impl.h (working copy)
@@ -14,7 +14,7 @@
namespace content {
-class CONTENT_EXPORT WebThreadBase : public blink::WebThread {
+class WebThreadBase : public blink::WebThread {
public:
virtual ~WebThreadBase();
@@ -33,10 +33,10 @@
TaskObserverMap task_observer_map_;
};
-class CONTENT_EXPORT WebThreadImpl : public WebThreadBase {
+class WebThreadImpl : public WebThreadBase {
public:
- explicit WebThreadImpl(const char* name);
- virtual ~WebThreadImpl();
+ CONTENT_EXPORT explicit WebThreadImpl(const char* name);
+ CONTENT_EXPORT virtual ~WebThreadImpl();
virtual void postTask(Task* task);
virtual void postDelayedTask(Task* task, long long delay_ms);
@@ -46,9 +46,8 @@
base::MessageLoop* message_loop() const { return thread_->message_loop(); }
- virtual bool isCurrentThread() const OVERRIDE;
-
private:
+ virtual bool isCurrentThread() const OVERRIDE;
scoped_ptr<base::Thread> thread_;
};
@@ -58,11 +57,11 @@
base::MessageLoopProxy* message_loop);
CONTENT_EXPORT virtual ~WebThreadImplForMessageLoop();
- virtual void postTask(Task* task) OVERRIDE;
- virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE;
+ virtual void postTask(Task* task);
+ virtual void postDelayedTask(Task* task, long long delay_ms);
- virtual void enterRunLoop() OVERRIDE;
- virtual void exitRunLoop() OVERRIDE;
+ virtual void enterRunLoop();
+ virtual void exitRunLoop();
private:
virtual bool isCurrentThread() const OVERRIDE;
« no previous file with comments | « trunk/src/content/child/web_url_loader_impl.cc ('k') | trunk/src/content/content_child.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698