| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "core/html/parser/HTMLDocumentParser.h" | 27 #include "core/html/parser/HTMLDocumentParser.h" |
| 28 | 28 |
| 29 #include "HTMLNames.h" | 29 #include "HTMLNames.h" |
| 30 #include "core/dom/DocumentFragment.h" | 30 #include "core/dom/DocumentFragment.h" |
| 31 #include "core/dom/Element.h" | 31 #include "core/dom/Element.h" |
| 32 #include "core/html/HTMLDocument.h" | 32 #include "core/html/HTMLDocument.h" |
| 33 #include "core/html/parser/AtomicHTMLToken.h" | 33 #include "core/html/parser/AtomicHTMLToken.h" |
| 34 #include "core/html/parser/BackgroundHTMLParser.h" | 34 #include "core/html/parser/BackgroundHTMLParser.h" |
| 35 #include "core/html/parser/CompactHTMLToken.h" | |
| 36 #include "core/html/parser/HTMLIdentifier.h" | 35 #include "core/html/parser/HTMLIdentifier.h" |
| 37 #include "core/html/parser/HTMLParserScheduler.h" | 36 #include "core/html/parser/HTMLParserScheduler.h" |
| 38 #include "core/html/parser/HTMLParserThread.h" | 37 #include "core/html/parser/HTMLParserThread.h" |
| 39 #include "core/html/parser/HTMLPreloadScanner.h" | |
| 40 #include "core/html/parser/HTMLScriptRunner.h" | 38 #include "core/html/parser/HTMLScriptRunner.h" |
| 41 #include "core/html/parser/HTMLTokenizer.h" | |
| 42 #include "core/html/parser/HTMLTreeBuilder.h" | 39 #include "core/html/parser/HTMLTreeBuilder.h" |
| 43 #include "core/inspector/InspectorInstrumentation.h" | 40 #include "core/inspector/InspectorInstrumentation.h" |
| 44 #include "core/frame/Frame.h" | 41 #include "core/frame/Frame.h" |
| 45 #include "platform/TraceEvent.h" | 42 #include "platform/TraceEvent.h" |
| 46 #include "wtf/Functional.h" | 43 #include "wtf/Functional.h" |
| 47 | 44 |
| 48 namespace WebCore { | 45 namespace WebCore { |
| 49 | 46 |
| 50 using namespace HTMLNames; | 47 using namespace HTMLNames; |
| 51 | 48 |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 965 m_parserScheduler->suspend(); | 962 m_parserScheduler->suspend(); |
| 966 } | 963 } |
| 967 | 964 |
| 968 void HTMLDocumentParser::resumeScheduledTasks() | 965 void HTMLDocumentParser::resumeScheduledTasks() |
| 969 { | 966 { |
| 970 if (m_parserScheduler) | 967 if (m_parserScheduler) |
| 971 m_parserScheduler->resume(); | 968 m_parserScheduler->resume(); |
| 972 } | 969 } |
| 973 | 970 |
| 974 } | 971 } |
| OLD | NEW |