| 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 19 matching lines...) Expand all Loading... |
| 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 "EventNames.h" |
| 35 #include "EventTargetNames.h" | 35 #include "EventTargetNames.h" |
| 36 #include "EventTypeNames.h" | 36 #include "EventTypeNames.h" |
| 37 #include "FetchInitiatorTypeNames.h" | 37 #include "FetchInitiatorTypeNames.h" |
| 38 #include "FontFamilyNames.h" | 38 #include "FontFamilyNames.h" |
| 39 #include "HTMLNames.h" | 39 #include "HTMLNames.h" |
| 40 #include "InputTypeNames.h" |
| 40 #include "MathMLNames.h" | 41 #include "MathMLNames.h" |
| 41 #include "SVGNames.h" | 42 #include "SVGNames.h" |
| 42 #include "XLinkNames.h" | 43 #include "XLinkNames.h" |
| 43 #include "XMLNSNames.h" | 44 #include "XMLNSNames.h" |
| 44 #include "XMLNames.h" | 45 #include "XMLNames.h" |
| 45 #include "core/css/MediaFeatureNames.h" | 46 #include "core/css/MediaFeatureNames.h" |
| 46 #include "platform/EventTracer.h" | 47 #include "platform/EventTracer.h" |
| 47 #include "platform/Partitions.h" | 48 #include "platform/Partitions.h" |
| 48 #include "platform/PlatformThreadData.h" | 49 #include "platform/PlatformThreadData.h" |
| 49 #include "wtf/text/StringStatics.h" | 50 #include "wtf/text/StringStatics.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 64 SVGNames::init(); | 65 SVGNames::init(); |
| 65 XLinkNames::init(); | 66 XLinkNames::init(); |
| 66 MathMLNames::init(); | 67 MathMLNames::init(); |
| 67 XMLNSNames::init(); | 68 XMLNSNames::init(); |
| 68 XMLNames::init(); | 69 XMLNames::init(); |
| 69 EventNames::init(); | 70 EventNames::init(); |
| 70 EventTargetNames::init(); | 71 EventTargetNames::init(); |
| 71 EventTypeNames::init(); | 72 EventTypeNames::init(); |
| 72 FetchInitiatorTypeNames::init(); | 73 FetchInitiatorTypeNames::init(); |
| 73 FontFamilyNames::init(); | 74 FontFamilyNames::init(); |
| 75 InputTypeNames::init(); |
| 74 MediaFeatureNames::init(); | 76 MediaFeatureNames::init(); |
| 75 WTF::StringStatics::init(); | 77 WTF::StringStatics::init(); |
| 76 QualifiedName::init(); | 78 QualifiedName::init(); |
| 77 Partitions::init(); | 79 Partitions::init(); |
| 78 EventTracer::initialize(); | 80 EventTracer::initialize(); |
| 79 | 81 |
| 80 // Ensure that the main thread's thread-local data is initialized before | 82 // Ensure that the main thread's thread-local data is initialized before |
| 81 // starting any worker threads. | 83 // starting any worker threads. |
| 82 PlatformThreadData::current(); | 84 PlatformThreadData::current(); |
| 83 | 85 |
| 84 StringImpl::freezeStaticStrings(); | 86 StringImpl::freezeStaticStrings(); |
| 85 } | 87 } |
| 86 | 88 |
| 87 void shutdown() | 89 void shutdown() |
| 88 { | 90 { |
| 89 Partitions::shutdown(); | 91 Partitions::shutdown(); |
| 90 } | 92 } |
| 91 | 93 |
| 92 } // namespace WebCore | 94 } // namespace WebCore |
| OLD | NEW |