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

Unified Diff: ui/base/touch/touch_editing_controller.cc

Issue 798683003: Rename old Aura TouchSelectionController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor fixes Created 6 years 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/base/touch/touch_editing_controller.h ('k') | ui/views/controls/textfield/textfield.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/touch/touch_editing_controller.cc
diff --git a/ui/base/touch/touch_editing_controller.cc b/ui/base/touch/touch_editing_controller.cc
index 1b84ed929bf2af8ad365bd6974d87ec7e3866bb7..79a70ec63a20b4fa499dd077ef0259010aeb84da 100644
--- a/ui/base/touch/touch_editing_controller.cc
+++ b/ui/base/touch/touch_editing_controller.cc
@@ -7,19 +7,19 @@
namespace ui {
namespace {
-TouchSelectionControllerFactory* g_shared_instance = NULL;
+TouchEditingControllerFactory* g_shared_instance = NULL;
} // namespace
-TouchSelectionController* TouchSelectionController::create(
+TouchEditingControllerDeprecated* TouchEditingControllerDeprecated::Create(
TouchEditable* client_view) {
if (g_shared_instance)
- return g_shared_instance->create(client_view);
+ return g_shared_instance->Create(client_view);
return NULL;
}
// static
-void TouchSelectionControllerFactory::SetInstance(
- TouchSelectionControllerFactory* instance) {
+void TouchEditingControllerFactory::SetInstance(
+ TouchEditingControllerFactory* instance) {
g_shared_instance = instance;
}
« no previous file with comments | « ui/base/touch/touch_editing_controller.h ('k') | ui/views/controls/textfield/textfield.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698