| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 class Document; | 57 class Document; |
| 58 class DocumentEncodingData; | 58 class DocumentEncodingData; |
| 59 class DocumentFragment; | 59 class DocumentFragment; |
| 60 class Element; | 60 class Element; |
| 61 class HTMLDocument; | 61 class HTMLDocument; |
| 62 class HTMLParserScheduler; | 62 class HTMLParserScheduler; |
| 63 class HTMLPreloadScanner; | 63 class HTMLPreloadScanner; |
| 64 class HTMLResourcePreloader; | 64 class HTMLResourcePreloader; |
| 65 class HTMLScriptRunner; | 65 class HTMLScriptRunner; |
| 66 class HTMLTreeBuilder; | 66 class HTMLTreeBuilder; |
| 67 class PumpSession; | |
| 68 class SegmentedString; | 67 class SegmentedString; |
| 69 class TokenizedChunkQueue; | 68 class TokenizedChunkQueue; |
| 70 class DocumentWriteEvaluator; | 69 class DocumentWriteEvaluator; |
| 71 | 70 |
| 72 class CORE_EXPORT HTMLDocumentParser : public ScriptableDocumentParser, | 71 class CORE_EXPORT HTMLDocumentParser : public ScriptableDocumentParser, |
| 73 private HTMLScriptRunnerHost { | 72 private HTMLScriptRunnerHost { |
| 74 USING_GARBAGE_COLLECTED_MIXIN(HTMLDocumentParser); | 73 USING_GARBAGE_COLLECTED_MIXIN(HTMLDocumentParser); |
| 75 USING_PRE_FINALIZER(HTMLDocumentParser, dispose); | 74 USING_PRE_FINALIZER(HTMLDocumentParser, dispose); |
| 76 | 75 |
| 77 public: | 76 public: |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 bool m_tasksWereSuspended; | 290 bool m_tasksWereSuspended; |
| 292 unsigned m_pumpSessionNestingLevel; | 291 unsigned m_pumpSessionNestingLevel; |
| 293 unsigned m_pumpSpeculationsSessionNestingLevel; | 292 unsigned m_pumpSpeculationsSessionNestingLevel; |
| 294 bool m_isParsingAtLineNumber; | 293 bool m_isParsingAtLineNumber; |
| 295 bool m_triedLoadingLinkHeaders; | 294 bool m_triedLoadingLinkHeaders; |
| 296 }; | 295 }; |
| 297 | 296 |
| 298 } // namespace blink | 297 } // namespace blink |
| 299 | 298 |
| 300 #endif // HTMLDocumentParser_h | 299 #endif // HTMLDocumentParser_h |
| OLD | NEW |