| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |