| Index: ui/views/touchui/touch_selection_controller_impl.h
|
| diff --git a/ui/views/touchui/touch_selection_controller_impl.h b/ui/views/touchui/touch_selection_controller_impl.h
|
| index 006b89782dc938f50279c6b2f07007efb4304d8f..295c85ccd73a33cc51185180a5c1f4f917922075 100644
|
| --- a/ui/views/touchui/touch_selection_controller_impl.h
|
| +++ b/ui/views/touchui/touch_selection_controller_impl.h
|
| @@ -122,9 +122,9 @@ class VIEWS_EXPORT TouchSelectionControllerImpl
|
|
|
| ui::TouchEditable* client_view_;
|
| Widget* client_widget_;
|
| - scoped_ptr<EditingHandleView> selection_handle_1_;
|
| - scoped_ptr<EditingHandleView> selection_handle_2_;
|
| - scoped_ptr<EditingHandleView> cursor_handle_;
|
| + std::unique_ptr<EditingHandleView> selection_handle_1_;
|
| + std::unique_ptr<EditingHandleView> selection_handle_2_;
|
| + std::unique_ptr<EditingHandleView> cursor_handle_;
|
| bool command_executed_;
|
| base::TimeTicks selection_start_time_;
|
|
|
|
|