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

Side by Side Diff: Source/core/html/HTMLTextFormControlElement.h

Issue 357603003: Add functions searching a word boundary without VisualPosition to HTMLTextFormControlElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add comments Created 6 years, 5 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 | « no previous file | Source/core/html/HTMLTextFormControlElement.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved. 6 * Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 void selectionChanged(bool userTriggered); 81 void selectionChanged(bool userTriggered);
82 bool lastChangeWasUserEdit() const; 82 bool lastChangeWasUserEdit() const;
83 virtual void setInnerEditorValue(const String&); 83 virtual void setInnerEditorValue(const String&);
84 String innerEditorValue() const; 84 String innerEditorValue() const;
85 85
86 String directionForFormData() const; 86 String directionForFormData() const;
87 87
88 void setTextAsOfLastFormControlChangeEvent(const String& text) { m_textAsOfL astFormControlChangeEvent = text; } 88 void setTextAsOfLastFormControlChangeEvent(const String& text) { m_textAsOfL astFormControlChangeEvent = text; }
89 89
90 // These functions doesn't cause synchronous layout and will be used from Sp ellChecher for perfermance improvement.
tkent 2014/07/08 01:50:10 doesn't -> don't I think |will| is unnecessary. -
yoichio 2014/07/08 02:31:23 Done.
91 // Passed |Position| must point inside of a text form control.
92 static Position startOfWord(const Position&);
93 static Position endOfWord(const Position&);
94 static Position startOfSentence(const Position&);
95 static Position endOfSentence(const Position&);
96
90 protected: 97 protected:
91 HTMLTextFormControlElement(const QualifiedName&, Document&, HTMLFormElement* ); 98 HTMLTextFormControlElement(const QualifiedName&, Document&, HTMLFormElement* );
92 bool isPlaceholderEmpty() const; 99 bool isPlaceholderEmpty() const;
93 virtual void updatePlaceholderText() = 0; 100 virtual void updatePlaceholderText() = 0;
94 101
95 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 102 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
96 103
97 void cacheSelection(int start, int end, TextFieldSelectionDirection directio n) 104 void cacheSelection(int start, int end, TextFieldSelectionDirection directio n)
98 { 105 {
99 ASSERT(start >= 0); 106 ASSERT(start >= 0);
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 } 151 }
145 152
146 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLTextFormControlElement); 153 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLTextFormControlElement);
147 154
148 HTMLTextFormControlElement* enclosingTextFormControl(const Position&); 155 HTMLTextFormControlElement* enclosingTextFormControl(const Position&);
149 HTMLTextFormControlElement* enclosingTextFormControl(Node*); 156 HTMLTextFormControlElement* enclosingTextFormControl(Node*);
150 157
151 } // namespace 158 } // namespace
152 159
153 #endif 160 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/html/HTMLTextFormControlElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698