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

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

Issue 2014483003: Rename OwnPtr::clear() to reset() in core/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 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/EffectModelOrDictionarySequenceOrDictionary.h" 8 #include "bindings/core/v8/EffectModelOrDictionarySequenceOrDictionary.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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 361
362 TEST_F(KeyframeEffectTest, ElementDestructorClearsAnimationTarget) 362 TEST_F(KeyframeEffectTest, ElementDestructorClearsAnimationTarget)
363 { 363 {
364 // This test expects incorrect behaviour should be removed once Element 364 // This test expects incorrect behaviour should be removed once Element
365 // and KeyframeEffect are moved to Oilpan. See crbug.com/362404 for context. 365 // and KeyframeEffect are moved to Oilpan. See crbug.com/362404 for context.
366 Timing timing; 366 Timing timing;
367 timing.iterationDuration = 5; 367 timing.iterationDuration = 5;
368 KeyframeEffect* animation = KeyframeEffect::create(element.get(), nullptr, t iming); 368 KeyframeEffect* animation = KeyframeEffect::create(element.get(), nullptr, t iming);
369 EXPECT_EQ(element.get(), animation->target()); 369 EXPECT_EQ(element.get(), animation->target());
370 document().timeline().play(animation); 370 document().timeline().play(animation);
371 pageHolder.clear(); 371 pageHolder.reset();
372 element.clear(); 372 element.clear();
373 } 373 }
374 374
375 } // namespace blink 375 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698