| Index: chrome/browser/ui/cocoa/status_bubble_mac.mm
|
| diff --git a/chrome/browser/ui/cocoa/status_bubble_mac.mm b/chrome/browser/ui/cocoa/status_bubble_mac.mm
|
| index dfa18af1a5871c1d35a5f1bb2fdfef4df320b37e..503a07019e840ed4a9b58dca99b6d026427fe704 100644
|
| --- a/chrome/browser/ui/cocoa/status_bubble_mac.mm
|
| +++ b/chrome/browser/ui/cocoa/status_bubble_mac.mm
|
| @@ -46,8 +46,8 @@ const int kTextPadding = 3;
|
| const CGFloat kBubbleOpacity = 1.0;
|
|
|
| // Delay before showing or hiding the bubble after a SetStatus or SetURL call.
|
| -const int64 kShowDelayMS = 80;
|
| -const int64 kHideDelayMS = 250;
|
| +const int64_t kShowDelayMS = 80;
|
| +const int64_t kHideDelayMS = 250;
|
|
|
| // How long each fade should last.
|
| const NSTimeInterval kShowFadeInDurationSeconds = 0.120;
|
| @@ -595,7 +595,7 @@ void StatusBubbleMac::AnimateWindowAlpha(CGFloat alpha,
|
| }];
|
| }
|
|
|
| -void StatusBubbleMac::StartTimer(int64 delay_ms) {
|
| +void StatusBubbleMac::StartTimer(int64_t delay_ms) {
|
| DCHECK([NSThread isMainThread]);
|
| DCHECK(state_ == kBubbleShowingTimer || state_ == kBubbleHidingTimer);
|
|
|
|
|