| Index: chrome/browser/ui/views/location_bar/chrome_to_mobile_view.cc
|
| ===================================================================
|
| --- chrome/browser/ui/views/location_bar/chrome_to_mobile_view.cc (revision 151406)
|
| +++ chrome/browser/ui/views/location_bar/chrome_to_mobile_view.cc (working copy)
|
| @@ -63,12 +63,12 @@
|
| return views::ImageView::GetTooltipText(p, tooltip);
|
| }
|
|
|
| -bool ChromeToMobileView::OnMousePressed(const views::MouseEvent& event) {
|
| +bool ChromeToMobileView::OnMousePressed(const ui::MouseEvent& event) {
|
| // Show the bubble on mouse release; that is standard button behavior.
|
| return true;
|
| }
|
|
|
| -void ChromeToMobileView::OnMouseReleased(const views::MouseEvent& event) {
|
| +void ChromeToMobileView::OnMouseReleased(const ui::MouseEvent& event) {
|
| if (event.IsOnlyLeftMouseButton() && HitTestPoint(event.location()))
|
| command_updater_->ExecuteCommand(IDC_CHROME_TO_MOBILE_PAGE);
|
| }
|
|
|