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

Side by Side Diff: Source/core/editing/Editor.h

Issue 21024004: Add/remove spell checking markers in text inputs depending on focus. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Clean up in the test & the new expected file. Created 7 years, 4 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) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 void applyEditingStyleToElement(Element*) const; 306 void applyEditingStyleToElement(Element*) const;
307 307
308 IntRect firstRectForRange(Range*) const; 308 IntRect firstRectForRange(Range*) const;
309 309
310 void respondToChangedSelection(const VisibleSelection& oldSelection, FrameSe lection::SetSelectionOptions); 310 void respondToChangedSelection(const VisibleSelection& oldSelection, FrameSe lection::SetSelectionOptions);
311 bool shouldChangeSelection(const VisibleSelection& oldSelection, const Visib leSelection& newSelection, EAffinity, bool stillSelecting) const; 311 bool shouldChangeSelection(const VisibleSelection& oldSelection, const Visib leSelection& newSelection, EAffinity, bool stillSelecting) const;
312 312
313 bool markedTextMatchesAreHighlighted() const; 313 bool markedTextMatchesAreHighlighted() const;
314 void setMarkedTextMatchesAreHighlighted(bool); 314 void setMarkedTextMatchesAreHighlighted(bool);
315 315
316 void textFieldDidBeginEditing(Element*);
316 void textFieldDidEndEditing(Element*); 317 void textFieldDidEndEditing(Element*);
317 void textDidChangeInTextField(Element*); 318 void textDidChangeInTextField(Element*);
318 bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*); 319 bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*);
319 WritingDirection baseWritingDirectionForSelectionStart() const; 320 WritingDirection baseWritingDirectionForSelectionStart() const;
320 321
321 void replaceSelectionWithFragment(PassRefPtr<DocumentFragment>, bool selectR eplacement, bool smartReplace, bool matchStyle); 322 void replaceSelectionWithFragment(PassRefPtr<DocumentFragment>, bool selectR eplacement, bool smartReplace, bool matchStyle);
322 void replaceSelectionWithText(const String&, bool selectReplacement, bool sm artReplace); 323 void replaceSelectionWithText(const String&, bool selectReplacement, bool sm artReplace);
323 bool selectionStartHasMarkerFor(DocumentMarker::MarkerType, int from, int le ngth) const; 324 bool selectionStartHasMarkerFor(DocumentMarker::MarkerType, int from, int le ngth) const;
324 void updateMarkersForWordsAffectedByEditing(bool onlyHandleWordsContainingSe lection); 325 void updateMarkersForWordsAffectedByEditing(bool onlyHandleWordsContainingSe lection);
325 326
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 389
389 inline bool Editor::markedTextMatchesAreHighlighted() const 390 inline bool Editor::markedTextMatchesAreHighlighted() const
390 { 391 {
391 return m_areMarkedTextMatchesHighlighted; 392 return m_areMarkedTextMatchesHighlighted;
392 } 393 }
393 394
394 395
395 } // namespace WebCore 396 } // namespace WebCore
396 397
397 #endif // Editor_h 398 #endif // Editor_h
OLDNEW
« no previous file with comments | « LayoutTests/editing/spelling/spellcheck-async-mutation.html ('k') | Source/core/editing/Editor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698