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

Side by Side Diff: third_party/WebKit/Source/platform/animation/CompositorAnimationTimelineTest.cpp

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 months 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "platform/animation/CompositorAnimationTimeline.h" 5 #include "platform/animation/CompositorAnimationTimeline.h"
6 6
7 #include <memory>
7 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
8 #include "cc/animation/animation_host.h" 9 #include "cc/animation/animation_host.h"
9 #include "platform/animation/CompositorAnimationHost.h" 10 #include "platform/animation/CompositorAnimationHost.h"
10 #include "platform/animation/CompositorAnimationPlayer.h" 11 #include "platform/animation/CompositorAnimationPlayer.h"
11 #include "platform/testing/CompositorTest.h" 12 #include "platform/testing/CompositorTest.h"
12 #include "platform/testing/WebLayerTreeViewImplForTesting.h" 13 #include "platform/testing/WebLayerTreeViewImplForTesting.h"
13 #include <memory>
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class CompositorAnimationTimelineTest : public CompositorTest {}; 17 class CompositorAnimationTimelineTest : public CompositorTest {};
18 18
19 TEST_F(CompositorAnimationTimelineTest, 19 TEST_F(CompositorAnimationTimelineTest,
20 CompositorTimelineDeletionDetachesFromAnimationHost) { 20 CompositorTimelineDeletionDetachesFromAnimationHost) {
21 std::unique_ptr<CompositorAnimationTimeline> timeline = 21 std::unique_ptr<CompositorAnimationTimeline> timeline =
22 CompositorAnimationTimeline::Create(); 22 CompositorAnimationTimeline::Create();
23 23
(...skipping 11 matching lines...) Expand all
35 EXPECT_TRUE(animation_host->GetTimelineById(cc_timeline->id())); 35 EXPECT_TRUE(animation_host->GetTimelineById(cc_timeline->id()));
36 36
37 // Delete CompositorAnimationTimeline while attached to host. 37 // Delete CompositorAnimationTimeline while attached to host.
38 timeline = nullptr; 38 timeline = nullptr;
39 39
40 EXPECT_FALSE(cc_timeline->animation_host()); 40 EXPECT_FALSE(cc_timeline->animation_host());
41 EXPECT_FALSE(animation_host->GetTimelineById(cc_timeline->id())); 41 EXPECT_FALSE(animation_host->GetTimelineById(cc_timeline->id()));
42 } 42 }
43 43
44 } // namespace blink 44 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698