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

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

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 years, 8 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 14 matching lines...) Expand all
25 25
26 #ifndef HTMLStackItem_h 26 #ifndef HTMLStackItem_h
27 #define HTMLStackItem_h 27 #define HTMLStackItem_h
28 28
29 #include "core/HTMLNames.h" 29 #include "core/HTMLNames.h"
30 #include "core/MathMLNames.h" 30 #include "core/MathMLNames.h"
31 #include "core/SVGNames.h" 31 #include "core/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 #include "platform/RuntimeEnabledFeatures.h" 34 #include "platform/RuntimeEnabledFeatures.h"
35 #include "wtf/text/AtomicString.h" 35 #include "platform/wtf/text/AtomicString.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class ContainerNode; 39 class ContainerNode;
40 40
41 class HTMLStackItem : public GarbageCollectedFinalized<HTMLStackItem> { 41 class HTMLStackItem : public GarbageCollectedFinalized<HTMLStackItem> {
42 public: 42 public:
43 enum ItemType { kItemForContextElement, kItemForDocumentFragmentNode }; 43 enum ItemType { kItemForContextElement, kItemForDocumentFragmentNode };
44 44
45 // Used by document fragment node and context element. 45 // Used by document fragment node and context element.
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 AtomicString token_local_name_; 213 AtomicString token_local_name_;
214 Vector<Attribute> token_attributes_; 214 Vector<Attribute> token_attributes_;
215 AtomicString namespace_uri_; 215 AtomicString namespace_uri_;
216 bool is_document_fragment_node_; 216 bool is_document_fragment_node_;
217 }; 217 };
218 218
219 } // namespace blink 219 } // namespace blink
220 220
221 #endif // HTMLStackItem_h 221 #endif // HTMLStackItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698