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

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

Issue 18512011: core/html: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/parser/HTMLSourceTracker.cpp ('k') | Source/core/html/parser/HTMLToken.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef HTMLStackItem_h 26 #ifndef HTMLStackItem_h
27 #define HTMLStackItem_h 27 #define HTMLStackItem_h
28 28
29 #include "HTMLNames.h" 29 #include "HTMLNames.h"
30 #include "MathMLNames.h" 30 #include "MathMLNames.h"
31 #include "SVGNames.h" 31 #include "SVGNames.h"
32 #include "core/dom/Element.h" 32 #include "core/dom/Element.h"
33 #include "core/html/parser/AtomicHTMLToken.h" 33 #include "core/html/parser/AtomicHTMLToken.h"
34 34 #include "wtf/RefCounted.h"
35 #include <wtf/RefCounted.h> 35 #include "wtf/RefPtr.h"
36 #include <wtf/RefPtr.h> 36 #include "wtf/text/AtomicString.h"
37 #include <wtf/text/AtomicString.h>
38 37
39 namespace WebCore { 38 namespace WebCore {
40 39
41 class ContainerNode; 40 class ContainerNode;
42 41
43 class HTMLStackItem : public RefCounted<HTMLStackItem> { 42 class HTMLStackItem : public RefCounted<HTMLStackItem> {
44 public: 43 public:
45 enum ItemType { 44 enum ItemType {
46 ItemForContextElement, 45 ItemForContextElement,
47 ItemForDocumentFragmentNode 46 ItemForDocumentFragmentNode
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 237
239 AtomicString m_tokenLocalName; 238 AtomicString m_tokenLocalName;
240 Vector<Attribute> m_tokenAttributes; 239 Vector<Attribute> m_tokenAttributes;
241 AtomicString m_namespaceURI; 240 AtomicString m_namespaceURI;
242 bool m_isDocumentFragmentNode; 241 bool m_isDocumentFragmentNode;
243 }; 242 };
244 243
245 } // namespace WebCore 244 } // namespace WebCore
246 245
247 #endif // HTMLStackItem_h 246 #endif // HTMLStackItem_h
OLDNEW
« no previous file with comments | « Source/core/html/parser/HTMLSourceTracker.cpp ('k') | Source/core/html/parser/HTMLToken.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698