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

Side by Side Diff: third_party/WebKit/Source/core/html/parser/HTMLTreeBuilder.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) 2010 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 13 matching lines...) Expand all
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef HTMLTreeBuilder_h 27 #ifndef HTMLTreeBuilder_h
28 #define HTMLTreeBuilder_h 28 #define HTMLTreeBuilder_h
29 29
30 #include "core/html/parser/HTMLConstructionSite.h" 30 #include "core/html/parser/HTMLConstructionSite.h"
31 #include "core/html/parser/HTMLElementStack.h" 31 #include "core/html/parser/HTMLElementStack.h"
32 #include "core/html/parser/HTMLParserOptions.h" 32 #include "core/html/parser/HTMLParserOptions.h"
33 #include "platform/heap/Handle.h" 33 #include "platform/heap/Handle.h"
34 #include "wtf/Noncopyable.h" 34 #include "platform/wtf/Noncopyable.h"
35 #include "wtf/PassRefPtr.h" 35 #include "platform/wtf/PassRefPtr.h"
36 #include "wtf/RefPtr.h" 36 #include "platform/wtf/RefPtr.h"
37 #include "wtf/Vector.h" 37 #include "platform/wtf/Vector.h"
38 #include "wtf/text/StringBuilder.h" 38 #include "platform/wtf/text/StringBuilder.h"
39 #include "wtf/text/TextPosition.h" 39 #include "platform/wtf/text/TextPosition.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class AtomicHTMLToken; 43 class AtomicHTMLToken;
44 class DocumentFragment; 44 class DocumentFragment;
45 class Element; 45 class Element;
46 class HTMLDocument; 46 class HTMLDocument;
47 class HTMLDocumentParser; 47 class HTMLDocumentParser;
48 48
49 class HTMLTreeBuilder final 49 class HTMLTreeBuilder final
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 275
276 // Starting line number of the script tag needing processing. 276 // Starting line number of the script tag needing processing.
277 TextPosition script_to_process_start_position_; 277 TextPosition script_to_process_start_position_;
278 278
279 HTMLParserOptions options_; 279 HTMLParserOptions options_;
280 }; 280 };
281 281
282 } // namespace blink 282 } // namespace blink
283 283
284 #endif 284 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698