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

Unified Diff: ui/keyboard/keyboard_controller_unittest.cc

Issue 24012002: Move Range code to gfx. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: d Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/selection_model.cc ('k') | ui/ui.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/keyboard/keyboard_controller_unittest.cc
diff --git a/ui/keyboard/keyboard_controller_unittest.cc b/ui/keyboard/keyboard_controller_unittest.cc
index 107600fec59b84b15513736c60984c1643fdc201..1d461166ff684cd10c0432481b46980d356fb837 100644
--- a/ui/keyboard/keyboard_controller_unittest.cc
+++ b/ui/keyboard/keyboard_controller_unittest.cc
@@ -135,16 +135,16 @@ class TestTextInputClient : public ui::TextInputClient {
return false;
}
virtual bool HasCompositionText() OVERRIDE { return false; }
- virtual bool GetTextRange(ui::Range* range) OVERRIDE { return false; }
- virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE {
+ virtual bool GetTextRange(gfx::Range* range) OVERRIDE { return false; }
+ virtual bool GetCompositionTextRange(gfx::Range* range) OVERRIDE {
return false;
}
- virtual bool GetSelectionRange(ui::Range* range) OVERRIDE { return false; }
- virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE {
+ virtual bool GetSelectionRange(gfx::Range* range) OVERRIDE { return false; }
+ virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE {
return false;
}
- virtual bool DeleteRange(const ui::Range& range) OVERRIDE { return false; }
- virtual bool GetTextFromRange(const ui::Range& range,
+ virtual bool DeleteRange(const gfx::Range& range) OVERRIDE { return false; }
+ virtual bool GetTextFromRange(const gfx::Range& range,
base::string16* text) OVERRIDE {
return false;
}
« no previous file with comments | « ui/gfx/selection_model.cc ('k') | ui/ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698