| Index: chrome/browser/ui/views/profiles/avatar_menu_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.cc b/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.cc
|
| index 3a133d5afe7f7624616c1f89c5acf617c8b10c26..b9ca3200b0942a1b19a98d556231b8c664dcaa77 100644
|
| --- a/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.cc
|
| @@ -201,10 +201,12 @@ void EditProfileLink::OnBlur() {
|
| // them instead.
|
| class ProfileImageView : public views::ImageView {
|
| public:
|
| - virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE;
|
| + // views::View:
|
| + virtual bool CanProcessEventsWithinSubtree() const OVERRIDE;
|
| };
|
|
|
| -bool ProfileImageView::HitTestRect(const gfx::Rect& rect) const {
|
| +bool ProfileImageView::CanProcessEventsWithinSubtree() const {
|
| + // Send events to the parent view for handling.
|
| return false;
|
| }
|
|
|
|
|