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

Unified Diff: ui/base/touch/selection_bound.h

Issue 2034863002: Move SelectionBound from ui/base/touch to ui/gfx to be used by cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated views_unittests Created 4 years, 7 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/base/BUILD.gn ('k') | ui/base/touch/selection_bound.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/touch/selection_bound.h
diff --git a/ui/base/touch/selection_bound.h b/ui/base/touch/selection_bound.h
deleted file mode 100644
index 4636ce11261473d4facd6acdbac21188c7846cb2..0000000000000000000000000000000000000000
--- a/ui/base/touch/selection_bound.h
+++ /dev/null
@@ -1,75 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef UI_BASE_TOUCH_SELECTION_BOUND_H_
-#define UI_BASE_TOUCH_SELECTION_BOUND_H_
-
-#include "ui/base/ui_base_export.h"
-#include "ui/gfx/geometry/point.h"
-#include "ui/gfx/geometry/point_f.h"
-
-namespace gfx {
-class Rect;
-class RectF;
-}
-
-namespace ui {
-
-// Bound of a selection end-point.
-class UI_BASE_EXPORT SelectionBound {
- public:
- enum Type {
- LEFT,
- RIGHT,
- CENTER,
- EMPTY,
- LAST = EMPTY
- };
-
- SelectionBound();
- SelectionBound(const SelectionBound& other);
- ~SelectionBound();
-
- Type type() const { return type_; }
- void set_type(Type value) { type_ = value; }
-
- const gfx::PointF& edge_top() const { return edge_top_; }
- const gfx::Point& edge_top_rounded() const { return edge_top_rounded_; }
- void SetEdgeTop(const gfx::PointF& value);
-
- const gfx::PointF& edge_bottom() const { return edge_bottom_; }
- const gfx::Point& edge_bottom_rounded() const { return edge_bottom_rounded_; }
- void SetEdgeBottom(const gfx::PointF& value);
-
- void SetEdge(const gfx::PointF& top, const gfx::PointF& bottom);
-
- bool visible() const { return visible_; }
- void set_visible(bool value) { visible_ = value; }
-
- // Returns the vertical difference between rounded top and bottom.
- int GetHeight() const;
-
- private:
- Type type_;
- gfx::PointF edge_top_;
- gfx::PointF edge_bottom_;
- gfx::Point edge_top_rounded_;
- gfx::Point edge_bottom_rounded_;
- bool visible_;
-};
-
-UI_BASE_EXPORT bool operator==(const SelectionBound& lhs,
- const SelectionBound& rhs);
-UI_BASE_EXPORT bool operator!=(const SelectionBound& lhs,
- const SelectionBound& rhs);
-
-UI_BASE_EXPORT gfx::Rect RectBetweenSelectionBounds(const SelectionBound& b1,
- const SelectionBound& b2);
-
-UI_BASE_EXPORT gfx::RectF RectFBetweenSelectionBounds(const SelectionBound& b1,
- const SelectionBound& b2);
-
-} // namespace ui
-
-#endif // UI_BASE_TOUCH_SELECTION_BOUND_H_
« no previous file with comments | « ui/base/BUILD.gn ('k') | ui/base/touch/selection_bound.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698