Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.h

Issue 1738133002: Add support for media attribute on link (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review nits Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698