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

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

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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) 2012 Company 100, Inc. All rights reserved. 2 * Copyright (C) 2012 Company 100, 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 tag_name == HTMLNames::frameTag || 152 tag_name == HTMLNames::frameTag ||
153 tag_name == HTMLNames::framesetTag || IsNumberedHeaderElement() || 153 tag_name == HTMLNames::framesetTag || IsNumberedHeaderElement() ||
154 tag_name == HTMLNames::headTag || tag_name == HTMLNames::headerTag || 154 tag_name == HTMLNames::headTag || tag_name == HTMLNames::headerTag ||
155 tag_name == HTMLNames::hgroupTag || tag_name == HTMLNames::hrTag || 155 tag_name == HTMLNames::hgroupTag || tag_name == HTMLNames::hrTag ||
156 tag_name == HTMLNames::htmlTag || tag_name == HTMLNames::iframeTag || 156 tag_name == HTMLNames::htmlTag || tag_name == HTMLNames::iframeTag ||
157 tag_name == HTMLNames::imgTag || tag_name == HTMLNames::inputTag || 157 tag_name == HTMLNames::imgTag || tag_name == HTMLNames::inputTag ||
158 tag_name == HTMLNames::liTag || tag_name == HTMLNames::linkTag || 158 tag_name == HTMLNames::liTag || tag_name == HTMLNames::linkTag ||
159 tag_name == HTMLNames::listingTag || 159 tag_name == HTMLNames::listingTag ||
160 tag_name == HTMLNames::mainTag || 160 tag_name == HTMLNames::mainTag ||
161 tag_name == HTMLNames::marqueeTag || 161 tag_name == HTMLNames::marqueeTag ||
162 tag_name == HTMLNames::menuTag || 162 tag_name == HTMLNames::menuTag || tag_name == HTMLNames::metaTag ||
163 tag_name == HTMLNames::metaTag || tag_name == HTMLNames::navTag || 163 tag_name == HTMLNames::navTag || tag_name == HTMLNames::noembedTag ||
164 tag_name == HTMLNames::noembedTag ||
165 tag_name == HTMLNames::noframesTag || 164 tag_name == HTMLNames::noframesTag ||
166 tag_name == HTMLNames::noscriptTag || 165 tag_name == HTMLNames::noscriptTag ||
167 tag_name == HTMLNames::objectTag || tag_name == HTMLNames::olTag || 166 tag_name == HTMLNames::objectTag || tag_name == HTMLNames::olTag ||
168 tag_name == HTMLNames::pTag || tag_name == HTMLNames::paramTag || 167 tag_name == HTMLNames::pTag || tag_name == HTMLNames::paramTag ||
169 tag_name == HTMLNames::plaintextTag || 168 tag_name == HTMLNames::plaintextTag ||
170 tag_name == HTMLNames::preTag || tag_name == HTMLNames::scriptTag || 169 tag_name == HTMLNames::preTag || tag_name == HTMLNames::scriptTag ||
171 tag_name == HTMLNames::sectionTag || 170 tag_name == HTMLNames::sectionTag ||
172 tag_name == HTMLNames::selectTag || 171 tag_name == HTMLNames::selectTag ||
173 tag_name == HTMLNames::styleTag || 172 tag_name == HTMLNames::styleTag ||
174 tag_name == HTMLNames::summaryTag || 173 tag_name == HTMLNames::summaryTag ||
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 209
211 AtomicString token_local_name_; 210 AtomicString token_local_name_;
212 Vector<Attribute> token_attributes_; 211 Vector<Attribute> token_attributes_;
213 AtomicString namespace_uri_; 212 AtomicString namespace_uri_;
214 bool is_document_fragment_node_; 213 bool is_document_fragment_node_;
215 }; 214 };
216 215
217 } // namespace blink 216 } // namespace blink
218 217
219 #endif // HTMLStackItem_h 218 #endif // HTMLStackItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698