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

Unified Diff: third_party/WebKit/Source/web/WebBlob.cpp

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 years, 11 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
Index: third_party/WebKit/Source/web/WebBlob.cpp
diff --git a/third_party/WebKit/Source/web/WebBlob.cpp b/third_party/WebKit/Source/web/WebBlob.cpp
index 82518c427e003fe97cf759ae3b18f6cdcffe1f99..02636161447a06187918882fb4db48725bd43397 100644
--- a/third_party/WebKit/Source/web/WebBlob.cpp
+++ b/third_party/WebKit/Source/web/WebBlob.cpp
@@ -82,7 +82,7 @@ v8::Local<v8::Value> WebBlob::toV8Value(v8::Local<v8::Object> creationContext,
DCHECK(creationContext->CreationContext() == isolate->GetCurrentContext());
if (!m_private.get())
return v8::Local<v8::Value>();
- return toV8(m_private.get(), isolate->GetCurrentContext()->Global(), isolate);
+ return ToV8(m_private.get(), isolate->GetCurrentContext()->Global(), isolate);
}
WebBlob::WebBlob(Blob* blob) : m_private(blob) {}
« no previous file with comments | « third_party/WebKit/Source/web/WebArrayBufferConverter.cpp ('k') | third_party/WebKit/Source/web/WebDOMFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698