| Index: ash/launcher/launcher_button.cc
|
| diff --git a/ash/launcher/launcher_button.cc b/ash/launcher/launcher_button.cc
|
| index af9b0e18aab2dbf5500b638bac5849ed4ffd150d..24b5adf3dd05b89bf0a7a072d5123905f67cb1d9 100644
|
| --- a/ash/launcher/launcher_button.cc
|
| +++ b/ash/launcher/launcher_button.cc
|
| @@ -64,7 +64,7 @@ class LauncherButton::BarView : public views::ImageView,
|
| }
|
|
|
| // View overrides.
|
| - bool HitTest(const gfx::Point& l) const OVERRIDE {
|
| + bool HitTestRect(const gfx::Rect& rect) const OVERRIDE {
|
| // Allow Mouse...() messages to go to the parent view.
|
| return false;
|
| }
|
| @@ -206,7 +206,7 @@ LauncherButton::IconView::IconView() : icon_size_(kIconSize) {
|
| LauncherButton::IconView::~IconView() {
|
| }
|
|
|
| -bool LauncherButton::IconView::HitTest(const gfx::Point& l) const {
|
| +bool LauncherButton::IconView::HitTestRect(const gfx::Rect& rect) const {
|
| // Return false so that LauncherButton gets all the mouse events.
|
| return false;
|
| }
|
|
|