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

Side by Side Diff: Source/core/html/parser/HTMLTreeBuilder.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/parser/HTMLTokenizer.cpp ('k') | Source/core/html/parser/XSSAuditor.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) 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 20 matching lines...) Expand all
31 #include "DocumentFragment.h" 31 #include "DocumentFragment.h"
32 #include "HTMLDocument.h" 32 #include "HTMLDocument.h"
33 #include "HTMLDocumentParser.h" 33 #include "HTMLDocumentParser.h"
34 #include "HTMLFormElement.h" 34 #include "HTMLFormElement.h"
35 #include "HTMLNames.h" 35 #include "HTMLNames.h"
36 #include "HTMLParserIdioms.h" 36 #include "HTMLParserIdioms.h"
37 #include "HTMLStackItem.h" 37 #include "HTMLStackItem.h"
38 #include "HTMLTemplateElement.h" 38 #include "HTMLTemplateElement.h"
39 #include "HTMLToken.h" 39 #include "HTMLToken.h"
40 #include "HTMLTokenizer.h" 40 #include "HTMLTokenizer.h"
41 #include "LocalizedStrings.h"
42 #include "MathMLNames.h" 41 #include "MathMLNames.h"
43 #include "NotImplemented.h"
44 #include "SVGNames.h" 42 #include "SVGNames.h"
45 #include "XLinkNames.h" 43 #include "XLinkNames.h"
46 #include "XMLNSNames.h" 44 #include "XMLNSNames.h"
47 #include "XMLNames.h" 45 #include "XMLNames.h"
46 #include "core/platform/LocalizedStrings.h"
47 #include "core/platform/NotImplemented.h"
48 #include <wtf/MainThread.h> 48 #include <wtf/MainThread.h>
49 #include <wtf/unicode/CharacterNames.h> 49 #include <wtf/unicode/CharacterNames.h>
50 50
51 namespace WebCore { 51 namespace WebCore {
52 52
53 using namespace HTMLNames; 53 using namespace HTMLNames;
54 54
55 namespace { 55 namespace {
56 56
57 inline bool isHTMLSpaceOrReplacementCharacter(UChar character) 57 inline bool isHTMLSpaceOrReplacementCharacter(UChar character)
(...skipping 2770 matching lines...) Expand 10 before | Expand all | Expand 10 after
2828 ASSERT(m_isAttached); 2828 ASSERT(m_isAttached);
2829 // Warning, this may detach the parser. Do not do anything else after this. 2829 // Warning, this may detach the parser. Do not do anything else after this.
2830 m_tree.finishedParsing(); 2830 m_tree.finishedParsing();
2831 } 2831 }
2832 2832
2833 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) 2833 void HTMLTreeBuilder::parseError(AtomicHTMLToken*)
2834 { 2834 {
2835 } 2835 }
2836 2836
2837 } 2837 }
OLDNEW
« no previous file with comments | « Source/core/html/parser/HTMLTokenizer.cpp ('k') | Source/core/html/parser/XSSAuditor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698