| 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 23 matching lines...) Expand all Loading... |
| 34 #include "gen/sky/core/EventNames.h" | 34 #include "gen/sky/core/EventNames.h" |
| 35 #include "gen/sky/core/EventTargetNames.h" | 35 #include "gen/sky/core/EventTargetNames.h" |
| 36 #include "gen/sky/core/EventTypeNames.h" | 36 #include "gen/sky/core/EventTypeNames.h" |
| 37 #include "gen/sky/core/FetchInitiatorTypeNames.h" | 37 #include "gen/sky/core/FetchInitiatorTypeNames.h" |
| 38 #include "gen/sky/core/HTMLNames.h" | 38 #include "gen/sky/core/HTMLNames.h" |
| 39 #include "gen/sky/core/MediaFeatureNames.h" | 39 #include "gen/sky/core/MediaFeatureNames.h" |
| 40 #include "gen/sky/core/MediaTypeNames.h" | 40 #include "gen/sky/core/MediaTypeNames.h" |
| 41 #include "gen/sky/platform/FontFamilyNames.h" | 41 #include "gen/sky/platform/FontFamilyNames.h" |
| 42 #include "sky/engine/core/dom/Document.h" | 42 #include "sky/engine/core/dom/Document.h" |
| 43 #include "sky/engine/core/html/parser/HTMLParserThread.h" | 43 #include "sky/engine/core/html/parser/HTMLParserThread.h" |
| 44 #include "sky/engine/platform/EventTracer.h" | |
| 45 #include "sky/engine/platform/Partitions.h" | 44 #include "sky/engine/platform/Partitions.h" |
| 46 #include "sky/engine/platform/PlatformThreadData.h" | 45 #include "sky/engine/platform/PlatformThreadData.h" |
| 47 #include "sky/engine/wtf/text/StringStatics.h" | 46 #include "sky/engine/wtf/text/StringStatics.h" |
| 48 | 47 |
| 49 namespace blink { | 48 namespace blink { |
| 50 | 49 |
| 51 void CoreInitializer::init() | 50 void CoreInitializer::init() |
| 52 { | 51 { |
| 53 ASSERT(!m_isInited); | 52 ASSERT(!m_isInited); |
| 54 m_isInited = true; | 53 m_isInited = true; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 79 HTMLParserThread::start(); | 78 HTMLParserThread::start(); |
| 80 } | 79 } |
| 81 | 80 |
| 82 void CoreInitializer::shutdown() | 81 void CoreInitializer::shutdown() |
| 83 { | 82 { |
| 84 HTMLParserThread::stop(); | 83 HTMLParserThread::stop(); |
| 85 Partitions::shutdown(); | 84 Partitions::shutdown(); |
| 86 } | 85 } |
| 87 | 86 |
| 88 } // namespace blink | 87 } // namespace blink |
| OLD | NEW |