| Index: cc/input/selection.h
|
| diff --git a/cc/input/selection.h b/cc/input/selection.h
|
| index 1f3c6ebac052e0fed32d44a1b2edb3ecc489423e..bbd189a22951843a36a57015a33a3c73b2f2035b 100644
|
| --- a/cc/input/selection.h
|
| +++ b/cc/input/selection.h
|
| @@ -11,20 +11,16 @@ namespace cc {
|
|
|
| template <typename BoundType>
|
| struct CC_EXPORT Selection {
|
| - Selection() : is_editable(false), is_empty_text_form_control(false) {}
|
| + Selection() {}
|
| ~Selection() {}
|
|
|
| BoundType start, end;
|
| - bool is_editable;
|
| - bool is_empty_text_form_control;
|
| };
|
|
|
| template <typename BoundType>
|
| inline bool operator==(const Selection<BoundType>& lhs,
|
| const Selection<BoundType>& rhs) {
|
| - return lhs.start == rhs.start && lhs.end == rhs.end &&
|
| - lhs.is_editable == rhs.is_editable &&
|
| - lhs.is_empty_text_form_control == rhs.is_empty_text_form_control;
|
| + return lhs.start == rhs.start && lhs.end == rhs.end;
|
| }
|
|
|
| template <typename BoundType>
|
|
|