Index: chrome/browser/ui/cocoa/draggable_button.mm |
diff --git a/chrome/browser/ui/cocoa/draggable_button.mm b/chrome/browser/ui/cocoa/draggable_button.mm |
index 5654d58a04b8c79d821b251a3c955fd2a6b7cd21..91e8ef266f59d6ac9ac49819564edc756dea1816 100644 |
--- a/chrome/browser/ui/cocoa/draggable_button.mm |
+++ b/chrome/browser/ui/cocoa/draggable_button.mm |
@@ -29,12 +29,14 @@ |
} |
- (void)mouseUp:(NSEvent*)theEvent { |
- if ([draggableButtonImpl_ mouseUp:theEvent] == kDraggableButtonMixinCallSuper) |
+ if ([draggableButtonImpl_ mouseUpImpl:theEvent] == |
+ kDraggableButtonMixinCallSuper) { |
[super mouseUp:theEvent]; |
+ } |
} |
- (void)mouseDown:(NSEvent*)theEvent { |
- if ([draggableButtonImpl_ mouseDown:theEvent] == |
+ if ([draggableButtonImpl_ mouseDownImpl:theEvent] == |
kDraggableButtonMixinCallSuper) { |
[super mouseDown:theEvent]; |
} |