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

Unified Diff: chrome/browser/cocoa/info_bubble_window.mm

Issue 793003: Pick up a GTM roll and update the apis that changed in this roll.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 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
Index: chrome/browser/cocoa/info_bubble_window.mm
===================================================================
--- chrome/browser/cocoa/info_bubble_window.mm (revision 41189)
+++ chrome/browser/cocoa/info_bubble_window.mm (working copy)
@@ -106,7 +106,8 @@
// Apply animations to hide self.
[NSAnimationContext beginGrouping];
[[NSAnimationContext currentContext]
- gtm_setDuration:kOrderOutAnimationDuration];
+ gtm_setDuration:kOrderOutAnimationDuration
+ eventMask:NSLeftMouseDownMask];
[[self animator] setAlphaValue:0.0];
[NSAnimationContext endGrouping];
}
@@ -138,7 +139,8 @@
// Apply animations to show and move self.
[NSAnimationContext beginGrouping];
[[NSAnimationContext currentContext]
- gtm_setDuration:kOrderInAnimationDuration];
+ gtm_setDuration:kOrderInAnimationDuration
+ eventMask:NSLeftMouseDownMask];
[[self animator] setAlphaValue:1.0];
[[self animator] setFrame:frame display:YES];
[NSAnimationContext endGrouping];
« no previous file with comments | « chrome/browser/cocoa/fullscreen_controller.mm ('k') | chrome/browser/cocoa/preferences_window_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698