summaryrefslogtreecommitdiffstats
path: root/ui/base/touch/touch_editing_controller.cc
diff options
context:
space:
mode:
authorvarunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-13 06:18:00 +0000
committervarunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-13 06:18:00 +0000
commitfa246b23a38930b6ec8d31ee06a9a2d29775c425 (patch)
tree0e3e972a4a51e698efe6901671e56a82c6d1a176 /ui/base/touch/touch_editing_controller.cc
parentcab66ce015e4b1cecfa2d7d0900a79a17bff08d2 (diff)
downloadchromium_src-fa246b23a38930b6ec8d31ee06a9a2d29775c425.zip
chromium_src-fa246b23a38930b6ec8d31ee06a9a2d29775c425.tar.gz
chromium_src-fa246b23a38930b6ec8d31ee06a9a2d29775c425.tar.bz2
Move touch_selection_controller interface to ui/base.
I would also like to rename it to TouchEditingController since it is not just for selection. But that makes enough changes to the file to render git incapable of recognizing it as a move instead of a new file. So I will do the renaming in a separate CL. BUG=115237 Review URL: https://chromiumcodereview.appspot.com/12224133 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182139 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/touch/touch_editing_controller.cc')
-rw-r--r--ui/base/touch/touch_editing_controller.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/ui/base/touch/touch_editing_controller.cc b/ui/base/touch/touch_editing_controller.cc
new file mode 100644
index 0000000..8afb740
--- /dev/null
+++ b/ui/base/touch/touch_editing_controller.cc
@@ -0,0 +1,14 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/base/touch/touch_editing_controller.h"
+
+namespace ui {
+
+TouchSelectionController* TouchSelectionController::create(
+ TouchEditable* client_view) {
+ return NULL;
+}
+
+} // namespace ui