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

Unified Diff: Source/bindings/core/v8/ScriptPromisePropertyBase.cpp

Issue 364293003: Follow up to r177450, do not .As() an empty handle. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptPromisePropertyBase.cpp
diff --git a/Source/bindings/core/v8/ScriptPromisePropertyBase.cpp b/Source/bindings/core/v8/ScriptPromisePropertyBase.cpp
index cd2d27527e0cbdba55a7810546234afffb9d3ae1..bd8258774b95c425fffe10e241901b398c905fba 100644
--- a/Source/bindings/core/v8/ScriptPromisePropertyBase.cpp
+++ b/Source/bindings/core/v8/ScriptPromisePropertyBase.cpp
@@ -62,15 +62,13 @@ ScriptPromise ScriptPromisePropertyBase::promise(DOMWrapperWorld& world)
}
ASSERT(wrapper->CreationContext() == context);
- v8::Handle<v8::Promise> promise = V8HiddenValue::getHiddenValue(m_isolate, wrapper, promiseName()).As<v8::Promise>();
- if (!promise.IsEmpty()) {
- // Return cached Promise
- return ScriptPromise(scriptState, promise);
- }
+ v8::Handle<v8::Value> cachedPromise = V8HiddenValue::getHiddenValue(m_isolate, wrapper, promiseName());
+ if (!cachedPromise.IsEmpty())
+ return ScriptPromise(scriptState, cachedPromise);
// Create and cache the Promise
v8::Handle<v8::Promise::Resolver> resolver = v8::Promise::Resolver::New(m_isolate);
- promise = resolver->GetPromise();
+ v8::Handle<v8::Promise> promise = resolver->GetPromise();
V8HiddenValue::setHiddenValue(m_isolate, wrapper, promiseName(), promise);
switch (m_state) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698