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

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

Issue 1543393002: Switch to standard integer types in chrome/browser/ui/cocoa/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/ui/cocoa/dock_icon.mm
diff --git a/chrome/browser/ui/cocoa/dock_icon.mm b/chrome/browser/ui/cocoa/dock_icon.mm
index 7b38acb4df6fdf6753a10112256151b40f4996a0..6ccd62c91dec2edfa5da0428b8bf34b6d7341184 100644
--- a/chrome/browser/ui/cocoa/dock_icon.mm
+++ b/chrome/browser/ui/cocoa/dock_icon.mm
@@ -4,6 +4,8 @@
#import "chrome/browser/ui/cocoa/dock_icon.h"
+#include <stdint.h>
+
#include "base/logging.h"
#include "base/mac/bundle_locations.h"
#include "base/mac/scoped_nsobject.h"
@@ -21,7 +23,7 @@ const float kBadgeFraction = 0.4f;
const float kBadgeIndent = 5.0f;
// The maximum update rate for the dock icon. 200ms = 5fps.
-const int64 kUpdateFrequencyMs = 200;
+const int64_t kUpdateFrequencyMs = 200;
} // namespace

Powered by Google App Engine
This is Rietveld 408576698