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

Side by Side Diff: Source/core/editing/ReplaceSelectionCommand.cpp

Issue 16282004: Remove unused includes from various .cpp files in core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: re-add HTMLFormElement to EmptyClients for windows Created 7 years, 6 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
« no previous file with comments | « Source/core/editing/RenderedPosition.cpp ('k') | Source/core/editing/SpellChecker.cpp » ('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) 2005, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2009, 2010, 2011 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 10 matching lines...) Expand all
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
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 #include "config.h" 27 #include "config.h"
28 #include "core/editing/ReplaceSelectionCommand.h" 28 #include "core/editing/ReplaceSelectionCommand.h"
29 29
30 #include "CSSPropertyNames.h" 30 #include "CSSPropertyNames.h"
31 #include "CSSValueKeywords.h"
32 #include "HTMLNames.h" 31 #include "HTMLNames.h"
33 #include "core/css/CSSStyleDeclaration.h" 32 #include "core/css/CSSStyleDeclaration.h"
34 #include "core/css/StylePropertySet.h" 33 #include "core/css/StylePropertySet.h"
35 #include "core/dom/BeforeTextInsertedEvent.h" 34 #include "core/dom/BeforeTextInsertedEvent.h"
36 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
37 #include "core/dom/DocumentFragment.h" 36 #include "core/dom/DocumentFragment.h"
38 #include "core/dom/Element.h" 37 #include "core/dom/Element.h"
39 #include "core/dom/EventNames.h" 38 #include "core/dom/EventNames.h"
40 #include "core/dom/ExceptionCodePlaceholder.h" 39 #include "core/dom/ExceptionCodePlaceholder.h"
41 #include "core/dom/NodeList.h"
42 #include "core/dom/NodeRenderStyle.h"
43 #include "core/dom/NodeTraversal.h" 40 #include "core/dom/NodeTraversal.h"
44 #include "core/dom/Text.h" 41 #include "core/dom/Text.h"
45 #include "core/editing/ApplyStyleCommand.h" 42 #include "core/editing/ApplyStyleCommand.h"
46 #include "core/editing/BreakBlockquoteCommand.h" 43 #include "core/editing/BreakBlockquoteCommand.h"
47 #include "core/editing/FrameSelection.h" 44 #include "core/editing/FrameSelection.h"
48 #include "core/editing/HTMLInterchange.h" 45 #include "core/editing/HTMLInterchange.h"
49 #include "core/editing/SimplifyMarkupCommand.h" 46 #include "core/editing/SimplifyMarkupCommand.h"
50 #include "core/editing/SmartReplace.h" 47 #include "core/editing/SmartReplace.h"
51 #include "core/editing/TextIterator.h" 48 #include "core/editing/TextIterator.h"
52 #include "core/editing/VisibleUnits.h" 49 #include "core/editing/VisibleUnits.h"
53 #include "core/editing/htmlediting.h" 50 #include "core/editing/htmlediting.h"
54 #include "core/editing/markup.h" 51 #include "core/editing/markup.h"
55 #include "core/html/HTMLElement.h" 52 #include "core/html/HTMLElement.h"
56 #include "core/html/HTMLInputElement.h" 53 #include "core/html/HTMLInputElement.h"
57 #include "core/page/Frame.h" 54 #include "core/page/Frame.h"
58 #include "core/rendering/RenderInline.h"
59 #include "core/rendering/RenderObject.h" 55 #include "core/rendering/RenderObject.h"
60 #include "core/rendering/RenderText.h" 56 #include "core/rendering/RenderText.h"
61 #include <wtf/StdLibExtras.h> 57 #include <wtf/StdLibExtras.h>
62 #include <wtf/Vector.h> 58 #include <wtf/Vector.h>
63 59
64 namespace WebCore { 60 namespace WebCore {
65 61
66 using namespace HTMLNames; 62 using namespace HTMLNames;
67 63
68 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment }; 64 enum EFragmentType { EmptyFragment, SingleTextNodeFragment, TreeFragment };
(...skipping 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after
1489 removeNodeAndPruneAncestors(nodeAfterInsertionPos.get()); 1485 removeNodeAndPruneAncestors(nodeAfterInsertionPos.get());
1490 1486
1491 VisibleSelection selectionAfterReplace(m_selectReplacement ? start : end, en d); 1487 VisibleSelection selectionAfterReplace(m_selectReplacement ? start : end, en d);
1492 1488
1493 setEndingSelection(selectionAfterReplace); 1489 setEndingSelection(selectionAfterReplace);
1494 1490
1495 return true; 1491 return true;
1496 } 1492 }
1497 1493
1498 } // namespace WebCore 1494 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/editing/RenderedPosition.cpp ('k') | Source/core/editing/SpellChecker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698