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 | 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 OwnPtr<HTMLToken> m_token; | 106 OwnPtr<HTMLToken> m_token; |
107 OwnPtr<HTMLTokenizer> m_tokenizer; | 107 OwnPtr<HTMLTokenizer> m_tokenizer; |
108 HTMLTreeBuilderSimulator m_treeBuilderSimulator; | 108 HTMLTreeBuilderSimulator m_treeBuilderSimulator; |
109 HTMLParserOptions m_options; | 109 HTMLParserOptions m_options; |
110 const size_t m_outstandingTokenLimit; | 110 const size_t m_outstandingTokenLimit; |
111 WeakPtr<HTMLDocumentParser> m_parser; | 111 WeakPtr<HTMLDocumentParser> m_parser; |
112 | 112 |
113 OwnPtr<CompactHTMLTokenStream> m_pendingTokens; | 113 OwnPtr<CompactHTMLTokenStream> m_pendingTokens; |
114 const size_t m_pendingTokenLimit; | 114 const size_t m_pendingTokenLimit; |
115 PreloadRequestStream m_pendingPreloads; | 115 PreloadRequestStream m_pendingPreloads; |
| 116 ViewportDescriptionWrapper m_viewportDescription; |
116 XSSInfoStream m_pendingXSSInfos; | 117 XSSInfoStream m_pendingXSSInfos; |
117 | 118 |
118 OwnPtr<XSSAuditor> m_xssAuditor; | 119 OwnPtr<XSSAuditor> m_xssAuditor; |
119 OwnPtr<TokenPreloadScanner> m_preloadScanner; | 120 OwnPtr<TokenPreloadScanner> m_preloadScanner; |
120 OwnPtr<TextResourceDecoder> m_decoder; | 121 OwnPtr<TextResourceDecoder> m_decoder; |
121 DocumentEncodingData m_lastSeenEncodingData; | 122 DocumentEncodingData m_lastSeenEncodingData; |
122 OwnPtr<WebTaskRunner> m_loadingTaskRunner; | 123 OwnPtr<WebTaskRunner> m_loadingTaskRunner; |
123 RefPtr<ParsedChunkQueue> m_parsedChunkQueue; | 124 RefPtr<ParsedChunkQueue> m_parsedChunkQueue; |
124 | 125 |
125 bool m_startingScript; | 126 bool m_startingScript; |
126 }; | 127 }; |
127 | 128 |
128 } // namespace blink | 129 } // namespace blink |
129 | 130 |
130 #endif | 131 #endif |
OLD | NEW |