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

Side by Side Diff: Source/core/html/parser/HTMLParserThread.cpp

Issue 100563004: Redirect HTML resource bytes directly to parser thread (Blink side CL) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_decodermove
Patch Set: Conflict fix Created 6 years, 8 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
« no previous file with comments | « Source/core/html/parser/HTMLParserThread.h ('k') | Source/core/loader/DocumentLoader.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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 ASSERT(s_sharedThread); 58 ASSERT(s_sharedThread);
59 delete s_sharedThread; 59 delete s_sharedThread;
60 s_sharedThread = 0; 60 s_sharedThread = 0;
61 } 61 }
62 62
63 HTMLParserThread* HTMLParserThread::shared() 63 HTMLParserThread* HTMLParserThread::shared()
64 { 64 {
65 return s_sharedThread; 65 return s_sharedThread;
66 } 66 }
67 67
68 blink::WebThread& HTMLParserThread::ensureThread() 68 blink::WebThread& HTMLParserThread::platformThread()
69 { 69 {
70 if (!m_thread) 70 if (!m_thread)
71 m_thread = adoptPtr(blink::Platform::current()->createThread("HTMLParser Thread")); 71 m_thread = adoptPtr(blink::Platform::current()->createThread("HTMLParser Thread"));
72 return *m_thread; 72 return *m_thread;
73 } 73 }
74 74
75 void HTMLParserThread::postTask(const Closure& closure) 75 void HTMLParserThread::postTask(const Closure& closure)
76 { 76 {
77 ensureThread().postTask(new Task(closure)); 77 platformThread().postTask(new Task(closure));
78 } 78 }
79 79
80 } // namespace WebCore 80 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/parser/HTMLParserThread.h ('k') | Source/core/loader/DocumentLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698