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

Side by Side Diff: Source/core/editing/htmlediting.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/chromium/EditorChromium.cpp ('k') | Source/core/fileapi/Blob.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) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2007 Apple 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 10 matching lines...) Expand all
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/editing/htmlediting.h" 27 #include "core/editing/htmlediting.h"
28 28
29 #include "HTMLElementFactory.h" 29 #include "HTMLElementFactory.h"
30 #include "HTMLNames.h" 30 #include "HTMLNames.h"
31 #include "core/accessibility/AXObjectCache.h"
32 #include "core/dom/Document.h" 31 #include "core/dom/Document.h"
33 #include "core/dom/ExceptionCodePlaceholder.h" 32 #include "core/dom/ExceptionCodePlaceholder.h"
34 #include "core/dom/NodeTraversal.h" 33 #include "core/dom/NodeTraversal.h"
35 #include "core/dom/PositionIterator.h" 34 #include "core/dom/PositionIterator.h"
36 #include "core/dom/Range.h" 35 #include "core/dom/Range.h"
37 #include "core/dom/Text.h" 36 #include "core/dom/Text.h"
38 #include "core/dom/shadow/ShadowRoot.h" 37 #include "core/dom/shadow/ShadowRoot.h"
39 #include "core/editing/Editor.h" 38 #include "core/editing/Editor.h"
40 #include "core/editing/HTMLInterchange.h" 39 #include "core/editing/HTMLInterchange.h"
41 #include "core/editing/TextIterator.h" 40 #include "core/editing/TextIterator.h"
42 #include "core/editing/VisiblePosition.h" 41 #include "core/editing/VisiblePosition.h"
43 #include "core/editing/VisibleSelection.h" 42 #include "core/editing/VisibleSelection.h"
44 #include "core/editing/VisibleUnits.h" 43 #include "core/editing/VisibleUnits.h"
45 #include "core/html/HTMLBRElement.h" 44 #include "core/html/HTMLBRElement.h"
46 #include "core/html/HTMLDivElement.h" 45 #include "core/html/HTMLDivElement.h"
47 #include "core/html/HTMLLIElement.h" 46 #include "core/html/HTMLLIElement.h"
48 #include "core/html/HTMLOListElement.h" 47 #include "core/html/HTMLOListElement.h"
49 #include "core/html/HTMLObjectElement.h"
50 #include "core/html/HTMLParagraphElement.h" 48 #include "core/html/HTMLParagraphElement.h"
51 #include "core/html/HTMLTextFormControlElement.h"
52 #include "core/html/HTMLUListElement.h" 49 #include "core/html/HTMLUListElement.h"
53 #include "core/page/Frame.h" 50 #include "core/page/Frame.h"
54 #include "core/rendering/RenderObject.h" 51 #include "core/rendering/RenderObject.h"
55 #include <wtf/Assertions.h> 52 #include <wtf/Assertions.h>
56 #include <wtf/StdLibExtras.h> 53 #include <wtf/StdLibExtras.h>
57 #include <wtf/unicode/CharacterNames.h> 54 #include <wtf/unicode/CharacterNames.h>
58 55
59 using namespace std; 56 using namespace std;
60 57
61 namespace WebCore { 58 namespace WebCore {
(...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 // if the selection starts just before a paragraph break, skip over it 1198 // if the selection starts just before a paragraph break, skip over it
1202 if (isEndOfParagraph(visiblePosition)) 1199 if (isEndOfParagraph(visiblePosition))
1203 return visiblePosition.next().deepEquivalent().downstream(); 1200 return visiblePosition.next().deepEquivalent().downstream();
1204 1201
1205 // otherwise, make sure to be at the start of the first selected node, 1202 // otherwise, make sure to be at the start of the first selected node,
1206 // instead of possibly at the end of the last node before the selection 1203 // instead of possibly at the end of the last node before the selection
1207 return visiblePosition.deepEquivalent().downstream(); 1204 return visiblePosition.deepEquivalent().downstream();
1208 } 1205 }
1209 1206
1210 } // namespace WebCore 1207 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/editing/chromium/EditorChromium.cpp ('k') | Source/core/fileapi/Blob.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698