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

Unified Diff: cc/trees/layer_tree_host_unittest_animation.cc

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes 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 | « cc/trees/layer_tree_host_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_unittest_animation.cc
diff --git a/cc/trees/layer_tree_host_unittest_animation.cc b/cc/trees/layer_tree_host_unittest_animation.cc
index b6d8505e72d5bf23008c68a54c9d157f984042b3..624aa6886af63b0c0471ed0ca9e441da30878fb9 100644
--- a/cc/trees/layer_tree_host_unittest_animation.cc
+++ b/cc/trees/layer_tree_host_unittest_animation.cc
@@ -4,6 +4,8 @@
#include "cc/trees/layer_tree_host.h"
+#include <stdint.h>
+
#include "cc/animation/animation_curve.h"
#include "cc/animation/layer_animation_controller.h"
#include "cc/animation/scroll_offset_animation_curve.h"
@@ -1302,8 +1304,8 @@ class LayerTreeHostAnimationTestNotifyAnimationFinished
Animation::TargetProperty target_property,
int group) override {
called_animation_started_ = true;
- layer_tree_host()->AnimateLayers(
- base::TimeTicks::FromInternalValue(std::numeric_limits<int64>::max()));
+ layer_tree_host()->AnimateLayers(base::TimeTicks::FromInternalValue(
+ std::numeric_limits<int64_t>::max()));
PostSetNeedsCommitToMainThread();
}
« no previous file with comments | « cc/trees/layer_tree_host_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698