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

Side by Side Diff: Source/core/editing/SpellChecker.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google 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 11 matching lines...) Expand all
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/SpellChecker.h" 27 #include "core/editing/SpellChecker.h"
28 28
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 #include "core/dom/DocumentMarkerController.h" 30 #include "core/dom/DocumentMarkerController.h"
31 #include "core/dom/Node.h" 31 #include "core/dom/Node.h"
32 #include "core/dom/PositionIterator.h"
33 #include "core/dom/Range.h" 32 #include "core/dom/Range.h"
34 #include "core/editing/Editor.h" 33 #include "core/editing/Editor.h"
35 #include "core/editing/TextCheckingHelper.h"
36 #include "core/editing/TextIterator.h"
37 #include "core/editing/htmlediting.h"
38 #include "core/html/HTMLInputElement.h"
39 #include "core/html/HTMLTextAreaElement.h"
40 #include "core/page/EditorClient.h" 34 #include "core/page/EditorClient.h"
41 #include "core/page/Frame.h" 35 #include "core/page/Frame.h"
42 #include "core/page/Page.h" 36 #include "core/page/Page.h"
43 #include "core/page/Settings.h" 37 #include "core/page/Settings.h"
44 #include "core/platform/text/TextCheckerClient.h" 38 #include "core/platform/text/TextCheckerClient.h"
45 #include "core/rendering/RenderObject.h"
46 39
47 namespace WebCore { 40 namespace WebCore {
48 41
49 SpellCheckRequest::SpellCheckRequest( 42 SpellCheckRequest::SpellCheckRequest(
50 PassRefPtr<Range> checkingRange, 43 PassRefPtr<Range> checkingRange,
51 PassRefPtr<Range> paragraphRange, 44 PassRefPtr<Range> paragraphRange,
52 const String& text, 45 const String& text,
53 TextCheckingTypeMask mask, 46 TextCheckingTypeMask mask,
54 TextCheckingProcessType processType, 47 TextCheckingProcessType processType,
55 const Vector<uint32_t>& documentMarkersInRange, 48 const Vector<uint32_t>& documentMarkersInRange,
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 didCheck(sequence, results); 253 didCheck(sequence, results);
261 } 254 }
262 255
263 void SpellChecker::didCheckCancel(int sequence) 256 void SpellChecker::didCheckCancel(int sequence)
264 { 257 {
265 Vector<TextCheckingResult> results; 258 Vector<TextCheckingResult> results;
266 didCheck(sequence, results); 259 didCheck(sequence, results);
267 } 260 }
268 261
269 } // namespace WebCore 262 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/editing/ReplaceSelectionCommand.cpp ('k') | Source/core/editing/SpellingCorrectionCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698