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

Unified Diff: ui/touch_selection/touch_handle.h

Issue 759433002: Reland: Move TouchSelectionController from content to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Excluded ui/touch_selection from Windows GN build 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/touch_selection/selection_event_type.h ('k') | ui/touch_selection/touch_handle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/touch_selection/touch_handle.h
diff --git a/content/browser/renderer_host/input/touch_handle.h b/ui/touch_selection/touch_handle.h
similarity index 91%
rename from content/browser/renderer_host/input/touch_handle.h
rename to ui/touch_selection/touch_handle.h
index 41e9fcddc18376690fd0abb63d9a0f0cefa21ac7..1998f8eb19c48fed706785cb3288b260160354e4 100644
--- a/content/browser/renderer_host/input/touch_handle.h
+++ b/ui/touch_selection/touch_handle.h
@@ -2,19 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_HANDLE_H_
-#define CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_HANDLE_H_
+#ifndef UI_TOUCH_SELECTION_TOUCH_HANDLE_H_
+#define UI_TOUCH_SELECTION_TOUCH_HANDLE_H_
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
-#include "content/common/content_export.h"
#include "ui/events/gesture_detection/motion_event.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/geometry/vector2d_f.h"
+#include "ui/touch_selection/ui_touch_selection_export.h"
-namespace content {
+namespace ui {
class TouchHandle;
@@ -26,7 +26,7 @@ enum TouchHandleOrientation {
};
// Interface through which |TouchHandle| delegates rendering-specific duties.
-class CONTENT_EXPORT TouchHandleDrawable {
+class UI_TOUCH_SELECTION_EXPORT TouchHandleDrawable {
public:
virtual ~TouchHandleDrawable() {}
virtual void SetEnabled(bool enabled) = 0;
@@ -38,7 +38,7 @@ class CONTENT_EXPORT TouchHandleDrawable {
// Interface through which |TouchHandle| communicates handle manipulation and
// requests concrete drawable instances.
-class CONTENT_EXPORT TouchHandleClient {
+class UI_TOUCH_SELECTION_EXPORT TouchHandleClient {
public:
virtual ~TouchHandleClient() {}
virtual void OnHandleDragBegin(const TouchHandle& handle) = 0;
@@ -54,7 +54,7 @@ class CONTENT_EXPORT TouchHandleClient {
// Responsible for displaying a selection or insertion handle for text
// interaction.
-class CONTENT_EXPORT TouchHandle {
+class UI_TOUCH_SELECTION_EXPORT TouchHandle {
public:
// The drawable will be enabled but invisible until otherwise specified.
TouchHandle(TouchHandleClient* client, TouchHandleOrientation orientation);
@@ -84,7 +84,7 @@ class CONTENT_EXPORT TouchHandle {
// Allows touch-dragging of the handle. Returns true if the event was
// consumed, in which case the caller should cease further handling.
- bool WillHandleTouchEvent(const ui::MotionEvent& event);
+ bool WillHandleTouchEvent(const MotionEvent& event);
// Ticks an active animation, as requested to the client by |SetNeedsAnimate|.
// Returns true if an animation is active and requires further ticking.
@@ -129,6 +129,6 @@ class CONTENT_EXPORT TouchHandle {
DISALLOW_COPY_AND_ASSIGN(TouchHandle);
};
-} // namespace content
+} // namespace ui
-#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_HANDLE_H_
+#endif // UI_TOUCH_SELECTION_TOUCH_HANDLE_H_
« no previous file with comments | « ui/touch_selection/selection_event_type.h ('k') | ui/touch_selection/touch_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698