| 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 28 matching lines...) Expand all Loading... |
| 39 #include "core/HTMLTokenizerNames.h" | 39 #include "core/HTMLTokenizerNames.h" |
| 40 #include "core/MediaFeatureNames.h" | 40 #include "core/MediaFeatureNames.h" |
| 41 #include "core/MediaTypeNames.h" | 41 #include "core/MediaTypeNames.h" |
| 42 #include "core/dom/Document.h" | 42 #include "core/dom/Document.h" |
| 43 #include "core/events/EventFactory.h" | 43 #include "core/events/EventFactory.h" |
| 44 #include "core/html/parser/HTMLParserThread.h" | 44 #include "core/html/parser/HTMLParserThread.h" |
| 45 #include "platform/EventTracer.h" | 45 #include "platform/EventTracer.h" |
| 46 #include "platform/FontFamilyNames.h" | 46 #include "platform/FontFamilyNames.h" |
| 47 #include "platform/Partitions.h" | 47 #include "platform/Partitions.h" |
| 48 #include "platform/PlatformThreadData.h" | 48 #include "platform/PlatformThreadData.h" |
| 49 #include "platform/heap/Heap.h" | |
| 50 #include "wtf/text/StringStatics.h" | 49 #include "wtf/text/StringStatics.h" |
| 51 | 50 |
| 52 namespace blink { | 51 namespace blink { |
| 53 | 52 |
| 54 void CoreInitializer::registerEventFactory() | 53 void CoreInitializer::registerEventFactory() |
| 55 { | 54 { |
| 56 static bool isRegistered = false; | 55 static bool isRegistered = false; |
| 57 if (isRegistered) | 56 if (isRegistered) |
| 58 return; | 57 return; |
| 59 isRegistered = true; | 58 isRegistered = true; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 HTMLParserThread::start(); | 95 HTMLParserThread::start(); |
| 97 } | 96 } |
| 98 | 97 |
| 99 void CoreInitializer::shutdown() | 98 void CoreInitializer::shutdown() |
| 100 { | 99 { |
| 101 HTMLParserThread::stop(); | 100 HTMLParserThread::stop(); |
| 102 Partitions::shutdown(); | 101 Partitions::shutdown(); |
| 103 } | 102 } |
| 104 | 103 |
| 105 } // namespace blink | 104 } // namespace blink |
| OLD | NEW |