Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5677)

Unified Diff: chrome/browser/ui/cocoa/draggable_button_mixin.mm

Issue 7623024: [Mac] Placate the stupid compiler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/cocoa/draggable_button_mixin.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/draggable_button_mixin.mm
diff --git a/chrome/browser/ui/cocoa/draggable_button_mixin.mm b/chrome/browser/ui/cocoa/draggable_button_mixin.mm
index a704498046064e48cb597e8f90ef40d896f2acc9..e28f674094255d9d81c95718a09ed152109f5045 100644
--- a/chrome/browser/ui/cocoa/draggable_button_mixin.mm
+++ b/chrome/browser/ui/cocoa/draggable_button_mixin.mm
@@ -64,7 +64,7 @@ const CGFloat kDragExpirationTimeout = 0.45;
// NSButton/NSResponder Implementations ////////////////////////////////////////
-- (DraggableButtonResult)mouseUp:(NSEvent*)theEvent {
+- (DraggableButtonResult)mouseUpImpl:(NSEvent*)theEvent {
durationMouseWasDown_ = [theEvent timestamp] - whenMouseDown_;
if (actionHasFired_)
@@ -85,7 +85,7 @@ const CGFloat kDragExpirationTimeout = 0.45;
// Mimic "begin a click" operation visually. Do NOT follow through with normal
// button event handling.
-- (DraggableButtonResult)mouseDown:(NSEvent*)theEvent {
+- (DraggableButtonResult)mouseDownImpl:(NSEvent*)theEvent {
[[NSCursor arrowCursor] set];
whenMouseDown_ = [theEvent timestamp];
« no previous file with comments | « chrome/browser/ui/cocoa/draggable_button_mixin.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698