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

Unified Diff: ash/wm/window_animations.cc

Issue 1540753002: Switch to standard integer types in ash/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: arraysize 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
« no previous file with comments | « ash/wm/video_detector_unittest.cc ('k') | ash/wm/window_cycle_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_animations.cc
diff --git a/ash/wm/window_animations.cc b/ash/wm/window_animations.cc
index 277f537db578ea05a920f75775e175aafde88f3d..93af37a0bb24c4d2b51d9290d2b95b3f99ea5aed 100644
--- a/ash/wm/window_animations.cc
+++ b/ash/wm/window_animations.cc
@@ -62,8 +62,8 @@ const float kWindowAnimation_ShowOpacity = 1.f;
const float kLayerScaleAboveSize = 1.1f;
const float kLayerScaleBelowSize = .9f;
-int64 Round64(float f) {
- return static_cast<int64>(f + 0.5f);
+int64_t Round64(float f) {
+ return static_cast<int64_t>(f + 0.5f);
}
base::TimeDelta GetCrossFadeDuration(aura::Window* window,
« no previous file with comments | « ash/wm/video_detector_unittest.cc ('k') | ash/wm/window_cycle_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698