| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 StringImpl::freezeStaticStrings(); | 111 StringImpl::freezeStaticStrings(); |
| 112 | 112 |
| 113 // Creates HTMLParserThread::shared and ScriptStreamerThread::shared, but | 113 // Creates HTMLParserThread::shared and ScriptStreamerThread::shared, but |
| 114 // does not start the threads. | 114 // does not start the threads. |
| 115 HTMLParserThread::init(); | 115 HTMLParserThread::init(); |
| 116 ScriptStreamerThread::init(); | 116 ScriptStreamerThread::init(); |
| 117 } | 117 } |
| 118 | 118 |
| 119 void CoreInitializer::shutdown() | 119 void CoreInitializer::shutdown() |
| 120 { | 120 { |
| 121 // Make sure we stop the HTMLParserThread and ScriptStreamerThread before | 121 // Make sure we stop the HTMLParserThread before Platform::current() is |
| 122 // Platform::current() is cleared. | 122 // cleared. |
| 123 ScriptStreamerThread::shutdown(); | |
| 124 HTMLParserThread::shutdown(); | 123 HTMLParserThread::shutdown(); |
| 125 | 124 |
| 126 Partitions::shutdown(); | 125 Partitions::shutdown(); |
| 127 } | 126 } |
| 128 | 127 |
| 129 } // namespace blink | 128 } // namespace blink |
| OLD | NEW |