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

Side by Side Diff: Source/core/editing/MarkupAccumulator.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/editing/FrameSelection.cpp ('k') | Source/core/editing/SpellChecker.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) 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. 3 * Copyright (C) 2009, 2010 Google 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 17 matching lines...) Expand all
28 #include "MarkupAccumulator.h" 28 #include "MarkupAccumulator.h"
29 29
30 #include "CDATASection.h" 30 #include "CDATASection.h"
31 #include "Comment.h" 31 #include "Comment.h"
32 #include "DocumentFragment.h" 32 #include "DocumentFragment.h"
33 #include "DocumentType.h" 33 #include "DocumentType.h"
34 #include "Editor.h" 34 #include "Editor.h"
35 #include "HTMLElement.h" 35 #include "HTMLElement.h"
36 #include "HTMLNames.h" 36 #include "HTMLNames.h"
37 #include "HTMLTemplateElement.h" 37 #include "HTMLTemplateElement.h"
38 #include "KURL.h"
39 #include "ProcessingInstruction.h" 38 #include "ProcessingInstruction.h"
40 #include "XLinkNames.h" 39 #include "XLinkNames.h"
41 #include "XMLNSNames.h" 40 #include "XMLNSNames.h"
42 #include "XMLNames.h" 41 #include "XMLNames.h"
42 #include "core/platform/KURL.h"
43 #include <wtf/unicode/CharacterNames.h> 43 #include <wtf/unicode/CharacterNames.h>
44 44
45 namespace WebCore { 45 namespace WebCore {
46 46
47 using namespace HTMLNames; 47 using namespace HTMLNames;
48 48
49 void MarkupAccumulator::appendCharactersReplacingEntities(StringBuilder& result, const String& source, unsigned offset, unsigned length, EntityMask entityMask) 49 void MarkupAccumulator::appendCharactersReplacingEntities(StringBuilder& result, const String& source, unsigned offset, unsigned length, EntityMask entityMask)
50 { 50 {
51 DEFINE_STATIC_LOCAL(const String, ampReference, (ASCIILiteral("&amp;"))); 51 DEFINE_STATIC_LOCAL(const String, ampReference, (ASCIILiteral("&amp;")));
52 DEFINE_STATIC_LOCAL(const String, ltReference, (ASCIILiteral("&lt;"))); 52 DEFINE_STATIC_LOCAL(const String, ltReference, (ASCIILiteral("&lt;")));
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 if (!node->isElementNode() || shouldSelfClose(node) || (!node->hasChildNodes () && elementCannotHaveEndTag(node))) 553 if (!node->isElementNode() || shouldSelfClose(node) || (!node->hasChildNodes () && elementCannotHaveEndTag(node)))
554 return; 554 return;
555 555
556 result.append('<'); 556 result.append('<');
557 result.append('/'); 557 result.append('/');
558 result.append(toElement(node)->nodeNamePreservingCase()); 558 result.append(toElement(node)->nodeNamePreservingCase());
559 result.append('>'); 559 result.append('>');
560 } 560 }
561 561
562 } 562 }
OLDNEW
« no previous file with comments | « Source/core/editing/FrameSelection.cpp ('k') | Source/core/editing/SpellChecker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698