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

Side by Side Diff: cc/animation/animation_host.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 unified diff | Download patch
« no previous file with comments | « cc/animation/animation_host.h ('k') | cc/animation/animation_id_provider.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/animation/animation_host.h" 5 #include "cc/animation/animation_host.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/macros.h"
9 #include "cc/animation/animation_delegate.h" 10 #include "cc/animation/animation_delegate.h"
10 #include "cc/animation/animation_id_provider.h" 11 #include "cc/animation/animation_id_provider.h"
11 #include "cc/animation/animation_player.h" 12 #include "cc/animation/animation_player.h"
12 #include "cc/animation/animation_registrar.h" 13 #include "cc/animation/animation_registrar.h"
13 #include "cc/animation/animation_timeline.h" 14 #include "cc/animation/animation_timeline.h"
14 #include "cc/animation/element_animations.h" 15 #include "cc/animation/element_animations.h"
15 #include "cc/animation/scroll_offset_animation_curve.h" 16 #include "cc/animation/scroll_offset_animation_curve.h"
16 #include "cc/animation/timing_function.h" 17 #include "cc/animation/timing_function.h"
17 #include "ui/gfx/geometry/box_f.h" 18 #include "ui/gfx/geometry/box_f.h"
18 #include "ui/gfx/geometry/scroll_offset.h" 19 #include "ui/gfx/geometry/scroll_offset.h"
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 int layer_id, 561 int layer_id,
561 const gfx::Vector2dF& scroll_delta, 562 const gfx::Vector2dF& scroll_delta,
562 const gfx::ScrollOffset& max_scroll_offset, 563 const gfx::ScrollOffset& max_scroll_offset,
563 base::TimeTicks frame_monotonic_time) { 564 base::TimeTicks frame_monotonic_time) {
564 DCHECK(scroll_offset_animations_); 565 DCHECK(scroll_offset_animations_);
565 return scroll_offset_animations_->ScrollAnimationUpdateTarget( 566 return scroll_offset_animations_->ScrollAnimationUpdateTarget(
566 layer_id, scroll_delta, max_scroll_offset, frame_monotonic_time); 567 layer_id, scroll_delta, max_scroll_offset, frame_monotonic_time);
567 } 568 }
568 569
569 } // namespace cc 570 } // namespace cc
OLDNEW
« no previous file with comments | « cc/animation/animation_host.h ('k') | cc/animation/animation_id_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698