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

Side by Side Diff: third_party/WebKit/public/web/WebWidget.h

Issue 2306643003: WebRange-ify WebWidget::compositionRange. (Closed)
Patch Set: Created 4 years, 3 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 162
163 // Called to inform the WebWidget to confirm an ongoing composition with a 163 // Called to inform the WebWidget to confirm an ongoing composition with a
164 // new composition text. If the text is empty then the current composition 164 // new composition text. If the text is empty then the current composition
165 // text is confirmed. If there is no ongoing composition, then deletes the 165 // text is confirmed. If there is no ongoing composition, then deletes the
166 // current selection and inserts the text. This method has no effect if 166 // current selection and inserts the text. This method has no effect if
167 // there is no ongoing composition and the text is empty. 167 // there is no ongoing composition and the text is empty.
168 // Returns true if there is an ongoing composition or the text is inserted. 168 // Returns true if there is an ongoing composition or the text is inserted.
169 virtual bool confirmComposition(const WebString& text) { return false; } 169 virtual bool confirmComposition(const WebString& text) { return false; }
170 170
171 // Fetches the character range of the current composition, also called the 171 // Fetches the character range of the current composition, also called the
172 // "marked range." Returns true and fills the out-paramters on success; 172 // "marked range."
173 // returns false on failure. 173 virtual WebRange compositionRange() { return WebRange(); }
174 virtual bool compositionRange(size_t* location, size_t* length) { return fal se; }
175 174
176 // Returns information about the current text input of this WebWidget. 175 // Returns information about the current text input of this WebWidget.
177 // Note that this query can be expensive for long fields, as it returns the 176 // Note that this query can be expensive for long fields, as it returns the
178 // plain-text representation of the current editable element. Consider using 177 // plain-text representation of the current editable element. Consider using
179 // the lighter-weight textInputType() when appropriate. 178 // the lighter-weight textInputType() when appropriate.
180 virtual WebTextInputInfo textInputInfo() { return WebTextInputInfo(); } 179 virtual WebTextInputInfo textInputInfo() { return WebTextInputInfo(); }
181 180
182 // Returns the type of current text input of this WebWidget. 181 // Returns the type of current text input of this WebWidget.
183 virtual WebTextInputType textInputType() { return WebTextInputTypeNone; } 182 virtual WebTextInputType textInputType() { return WebTextInputTypeNone; }
184 183
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // Applies the range from |start| to |start + length| on the foucsed frame s o that the text will later be replaced. 252 // Applies the range from |start| to |start + length| on the foucsed frame s o that the text will later be replaced.
254 virtual void applyReplacementRange(int start, int length) {} 253 virtual void applyReplacementRange(int start, int length) {}
255 254
256 protected: 255 protected:
257 ~WebWidget() { } 256 ~WebWidget() { }
258 }; 257 };
259 258
260 } // namespace blink 259 } // namespace blink
261 260
262 #endif 261 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698