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

Side by Side Diff: third_party/WebKit/Source/core/animation/KeyframeEffectTest.cpp

Issue 1854543002: Oilpan: Remove WillBe types (part 7) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "core/animation/KeyframeEffect.h" 5 #include "core/animation/KeyframeEffect.h"
6 6
7 #include "bindings/core/v8/Dictionary.h" 7 #include "bindings/core/v8/Dictionary.h"
8 #include "bindings/core/v8/UnionTypesCore.h" 8 #include "bindings/core/v8/UnionTypesCore.h"
9 #include "bindings/core/v8/V8BindingForTesting.h" 9 #include "bindings/core/v8/V8BindingForTesting.h"
10 #include "bindings/core/v8/V8KeyframeEffectOptions.h" 10 #include "bindings/core/v8/V8KeyframeEffectOptions.h"
(...skipping 19 matching lines...) Expand all
30 element = document().createElement("foo", ASSERT_NO_EXCEPTION); 30 element = document().createElement("foo", ASSERT_NO_EXCEPTION);
31 31
32 document().animationClock().resetTimeForTesting(document().timeline().ze roTime()); 32 document().animationClock().resetTimeForTesting(document().timeline().ze roTime());
33 document().documentElement()->appendChild(element.get()); 33 document().documentElement()->appendChild(element.get());
34 EXPECT_EQ(0, document().timeline().currentTime()); 34 EXPECT_EQ(0, document().timeline().currentTime());
35 } 35 }
36 36
37 Document& document() const { return pageHolder->document(); } 37 Document& document() const { return pageHolder->document(); }
38 38
39 OwnPtr<DummyPageHolder> pageHolder; 39 OwnPtr<DummyPageHolder> pageHolder;
40 RefPtrWillBePersistent<Element> element; 40 Persistent<Element> element;
41 TrackExceptionState exceptionState; 41 TrackExceptionState exceptionState;
42 }; 42 };
43 43
44 class AnimationKeyframeEffectV8Test : public KeyframeEffectTest { 44 class AnimationKeyframeEffectV8Test : public KeyframeEffectTest {
45 protected: 45 protected:
46 AnimationKeyframeEffectV8Test() 46 AnimationKeyframeEffectV8Test()
47 : m_isolate(v8::Isolate::GetCurrent()) 47 : m_isolate(v8::Isolate::GetCurrent())
48 , m_scope(m_isolate) 48 , m_scope(m_isolate)
49 { 49 {
50 } 50 }
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 Timing timing; 370 Timing timing;
371 timing.iterationDuration = 5; 371 timing.iterationDuration = 5;
372 KeyframeEffect* animation = KeyframeEffect::create(element.get(), nullptr, t iming); 372 KeyframeEffect* animation = KeyframeEffect::create(element.get(), nullptr, t iming);
373 EXPECT_EQ(element.get(), animation->target()); 373 EXPECT_EQ(element.get(), animation->target());
374 document().timeline().play(animation); 374 document().timeline().play(animation);
375 pageHolder.clear(); 375 pageHolder.clear();
376 element.clear(); 376 element.clear();
377 } 377 }
378 378
379 } // namespace blink 379 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698