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

Unified Diff: Source/web/WebBlob.cpp

Issue 1166793006: bindings: Stop using the given creationContext in public APIs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebArrayBufferConverter.cpp ('k') | Source/web/WebDOMError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebBlob.cpp
diff --git a/Source/web/WebBlob.cpp b/Source/web/WebBlob.cpp
index 1cb2e0864439e99661e319cc6ad5a12a49366c41..23727d425acbcbaf411e484e9acfefadc7d5231b 100644
--- a/Source/web/WebBlob.cpp
+++ b/Source/web/WebBlob.cpp
@@ -79,11 +79,13 @@ WebString WebBlob::uuid()
return m_private->uuid();
}
-v8::Local<v8::Value> WebBlob::toV8Value(v8::Local<v8::Object> creationContext, v8::Isolate* isolate)
+v8::Local<v8::Value> WebBlob::toV8Value(v8::Local<v8::Object> /* creationContext */, v8::Isolate* isolate)
{
+ // We no longer use |creationContext| because it's often misused and points
+ // to a context faked by user script.
if (!m_private.get())
return v8::Local<v8::Value>();
- return toV8(m_private.get(), creationContext, isolate);
+ return toV8(m_private.get(), isolate->GetCurrentContext()->Global(), isolate);
}
WebBlob::WebBlob(Blob* blob)
« no previous file with comments | « Source/web/WebArrayBufferConverter.cpp ('k') | Source/web/WebDOMError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698