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

Unified Diff: Source/core/animation/TimingInputTest.cpp

Issue 1079973002: [Source/core/animation] Use Local<> in lieu of Handle<> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed build breaks Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/animation/EffectInputTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/TimingInputTest.cpp
diff --git a/Source/core/animation/TimingInputTest.cpp b/Source/core/animation/TimingInputTest.cpp
index bb1b95c7ae16fa203c14dc2ad26f78452681d713..90cdf9ac7793f3f6e0505b6208a58261255aa63f 100644
--- a/Source/core/animation/TimingInputTest.cpp
+++ b/Source/core/animation/TimingInputTest.cpp
@@ -24,7 +24,7 @@ protected:
Timing applyTimingInputNumber(String timingProperty, double timingPropertyValue)
{
- v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate);
+ v8::Local<v8::Object> timingInput = v8::Object::New(m_isolate);
setV8ObjectPropertyAsNumber(timingInput, timingProperty, timingPropertyValue);
AnimationTimingProperties timingInputDictionary;
V8AnimationTimingProperties::toImpl(m_isolate, timingInput, timingInputDictionary, exceptionState);
@@ -33,7 +33,7 @@ protected:
Timing applyTimingInputString(String timingProperty, String timingPropertyValue)
{
- v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate);
+ v8::Local<v8::Object> timingInput = v8::Object::New(m_isolate);
setV8ObjectPropertyAsString(timingInput, timingProperty, timingPropertyValue);
AnimationTimingProperties timingInputDictionary;
V8AnimationTimingProperties::toImpl(m_isolate, timingInput, timingInputDictionary, exceptionState);
« no previous file with comments | « Source/core/animation/EffectInputTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698