| Index: views/view_unittest.cc
|
| ===================================================================
|
| --- views/view_unittest.cc (revision 74326)
|
| +++ views/view_unittest.cc (working copy)
|
| @@ -326,19 +326,19 @@
|
| ////////////////////////////////////////////////////////////////////////////////
|
|
|
| bool TestView::OnMousePressed(const MouseEvent& event) {
|
| - last_mouse_event_type_ = event.GetType();
|
| + last_mouse_event_type_ = event.type();
|
| location_.SetPoint(event.x(), event.y());
|
| return true;
|
| }
|
|
|
| bool TestView::OnMouseDragged(const MouseEvent& event) {
|
| - last_mouse_event_type_ = event.GetType();
|
| + last_mouse_event_type_ = event.type();
|
| location_.SetPoint(event.x(), event.y());
|
| return true;
|
| }
|
|
|
| void TestView::OnMouseReleased(const MouseEvent& event, bool canceled) {
|
| - last_mouse_event_type_ = event.GetType();
|
| + last_mouse_event_type_ = event.type();
|
| location_.SetPoint(event.x(), event.y());
|
| }
|
|
|
|
|