summaryrefslogtreecommitdiffstats
path: root/ui/gfx/render_text.h
diff options
context:
space:
mode:
authorxji@google.com <xji@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-16 21:18:57 +0000
committerxji@google.com <xji@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-16 21:18:57 +0000
commitcb5827d8256021c98d051f391877ba9faffa6e7e (patch)
tree6ac30d46a87ec66f209bae3f302a1648e9e2cafa /ui/gfx/render_text.h
parentcc0333740b0c8653ebe71c42afc0eb526a0bdebc (diff)
downloadchromium_src-cb5827d8256021c98d051f391877ba9faffa6e7e.zip
chromium_src-cb5827d8256021c98d051f391877ba9faffa6e7e.tar.gz
chromium_src-cb5827d8256021c98d051f391877ba9faffa6e7e.tar.bz2
Remove PREVIOUS_GRAPHEME_TRAILING.
Remove const from GetIndexOfPreviousGrapheme() so the override function could update local data. Construct SelectionModel correctly in unittest. BUG=90426 TEST=--use-pure-view. Review URL: http://codereview.chromium.org/7607018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97029 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/render_text.h')
-rw-r--r--ui/gfx/render_text.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/ui/gfx/render_text.h b/ui/gfx/render_text.h
index c3f9104..cc4f4e5 100644
--- a/ui/gfx/render_text.h
+++ b/ui/gfx/render_text.h
@@ -90,15 +90,13 @@ enum BreakType {
class UI_EXPORT SelectionModel {
public:
enum CaretPlacement {
- // PREVIOUS_GRAPHEME_TRAILING means cursor is visually attached to the
- // trailing edge of previous grapheme.
- PREVIOUS_GRAPHEME_TRAILING,
LEADING,
TRAILING,
};
SelectionModel();
explicit SelectionModel(size_t pos);
+ SelectionModel(size_t start, size_t end);
SelectionModel(size_t end, size_t pos, CaretPlacement status);
SelectionModel(size_t start, size_t end, size_t pos, CaretPlacement status);
@@ -277,7 +275,7 @@ class UI_EXPORT RenderText {
BreakType break_type);
// Get the logical index of the grapheme preceeding the argument |position|.
- virtual size_t GetIndexOfPreviousGrapheme(size_t position) const;
+ virtual size_t GetIndexOfPreviousGrapheme(size_t position);
// Apply composition style (underline) to composition range and selection
// style (foreground) to selection range.