| 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "Init.h" | 32 #include "Init.h" |
| 33 | 33 |
| 34 #include "EventNames.h" | 34 #include "core/EventNames.h" |
| 35 #include "EventTargetNames.h" | 35 #include "core/EventTargetNames.h" |
| 36 #include "EventTypeNames.h" | 36 #include "core/EventTypeNames.h" |
| 37 #include "FetchInitiatorTypeNames.h" | 37 #include "core/FetchInitiatorTypeNames.h" |
| 38 #include "HTMLNames.h" | 38 #include "core/HTMLNames.h" |
| 39 #include "HTMLTokenizerNames.h" | 39 #include "core/HTMLTokenizerNames.h" |
| 40 #include "InputTypeNames.h" | 40 #include "core/InputTypeNames.h" |
| 41 #include "MathMLNames.h" | 41 #include "core/MathMLNames.h" |
| 42 #include "MediaFeatureNames.h" | 42 #include "core/MediaFeatureNames.h" |
| 43 #include "MediaTypeNames.h" | 43 #include "core/MediaTypeNames.h" |
| 44 #include "SVGNames.h" | 44 #include "core/SVGNames.h" |
| 45 #include "XLinkNames.h" | 45 #include "core/XLinkNames.h" |
| 46 #include "XMLNSNames.h" | 46 #include "core/XMLNSNames.h" |
| 47 #include "XMLNames.h" | 47 #include "core/XMLNames.h" |
| 48 #include "core/dom/Document.h" | 48 #include "core/dom/Document.h" |
| 49 #include "core/events/EventFactory.h" | 49 #include "core/events/EventFactory.h" |
| 50 #include "core/html/parser/HTMLParserThread.h" | 50 #include "core/html/parser/HTMLParserThread.h" |
| 51 #include "platform/EventTracer.h" | 51 #include "platform/EventTracer.h" |
| 52 #include "platform/FontFamilyNames.h" | 52 #include "platform/FontFamilyNames.h" |
| 53 #include "platform/Partitions.h" | 53 #include "platform/Partitions.h" |
| 54 #include "platform/PlatformThreadData.h" | 54 #include "platform/PlatformThreadData.h" |
| 55 #include "platform/heap/Heap.h" | 55 #include "platform/heap/Heap.h" |
| 56 #include "wtf/text/StringStatics.h" | 56 #include "wtf/text/StringStatics.h" |
| 57 | 57 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 void shutdown() | 123 void shutdown() |
| 124 { | 124 { |
| 125 // Make sure we stop the HTMLParserThread before Platform::current() is clea
red. | 125 // Make sure we stop the HTMLParserThread before Platform::current() is clea
red. |
| 126 HTMLParserThread::shutdown(); | 126 HTMLParserThread::shutdown(); |
| 127 | 127 |
| 128 Partitions::shutdown(); | 128 Partitions::shutdown(); |
| 129 } | 129 } |
| 130 | 130 |
| 131 } // namespace WebCore | 131 } // namespace WebCore |
| OLD | NEW |