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" |
| 35 #include "EventTargetNames.h" |
34 #include "EventTypeNames.h" | 36 #include "EventTypeNames.h" |
35 #include "FetchInitiatorTypeNames.h" | 37 #include "FetchInitiatorTypeNames.h" |
36 #include "FontFamilyNames.h" | 38 #include "FontFamilyNames.h" |
37 #include "HTMLNames.h" | 39 #include "HTMLNames.h" |
38 #include "MathMLNames.h" | 40 #include "MathMLNames.h" |
39 #include "SVGNames.h" | 41 #include "SVGNames.h" |
40 #include "XLinkNames.h" | 42 #include "XLinkNames.h" |
41 #include "XMLNSNames.h" | 43 #include "XMLNSNames.h" |
42 #include "XMLNames.h" | 44 #include "XMLNames.h" |
43 #include "core/css/MediaFeatureNames.h" | 45 #include "core/css/MediaFeatureNames.h" |
(...skipping 12 matching lines...) Expand all Loading... |
56 | 58 |
57 // It would make logical sense to do this and WTF::StringStatics::init() in | 59 // It would make logical sense to do this and WTF::StringStatics::init() in |
58 // WTF::initialize() but there are ordering dependencies. | 60 // WTF::initialize() but there are ordering dependencies. |
59 AtomicString::init(); | 61 AtomicString::init(); |
60 HTMLNames::init(); | 62 HTMLNames::init(); |
61 SVGNames::init(); | 63 SVGNames::init(); |
62 XLinkNames::init(); | 64 XLinkNames::init(); |
63 MathMLNames::init(); | 65 MathMLNames::init(); |
64 XMLNSNames::init(); | 66 XMLNSNames::init(); |
65 XMLNames::init(); | 67 XMLNames::init(); |
66 FontFamilyNames::init(); | 68 EventNames::init(); |
| 69 EventTargetNames::init(); |
67 EventTypeNames::init(); | 70 EventTypeNames::init(); |
68 FetchInitiatorTypeNames::init(); | 71 FetchInitiatorTypeNames::init(); |
| 72 FontFamilyNames::init(); |
69 MediaFeatureNames::init(); | 73 MediaFeatureNames::init(); |
70 WTF::StringStatics::init(); | 74 WTF::StringStatics::init(); |
71 QualifiedName::init(); | 75 QualifiedName::init(); |
72 Partitions::init(); | 76 Partitions::init(); |
73 EventTracer::initialize(); | 77 EventTracer::initialize(); |
74 | 78 |
75 StringImpl::freezeStaticStrings(); | 79 StringImpl::freezeStaticStrings(); |
76 } | 80 } |
77 | 81 |
78 void shutdown() | 82 void shutdown() |
79 { | 83 { |
80 Partitions::shutdown(); | 84 Partitions::shutdown(); |
81 } | 85 } |
82 | 86 |
83 } // namespace WebCore | 87 } // namespace WebCore |
OLD | NEW |