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

Unified Diff: third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.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/modules/fetch/BodyStreamBuffer.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp b/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
index ba1ea3040b5a860a60fc8f39b832a9ae704b7af7..2f717ff07e0d5e06ff24f3f101f6a0b0e5e252f1 100644
--- a/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
+++ b/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
@@ -81,7 +81,7 @@ BodyStreamBuffer::BodyStreamBuffer(ScriptState* scriptState,
m_scriptState(scriptState),
m_consumer(consumer),
m_madeFromReadableStream(false) {
- v8::Local<v8::Value> bodyValue = toV8(this, scriptState);
+ v8::Local<v8::Value> bodyValue = ToV8(this, scriptState);
DCHECK(!bodyValue.IsEmpty());
DCHECK(bodyValue->IsObject());
v8::Local<v8::Object> body = bodyValue.As<v8::Object>();
@@ -103,7 +103,7 @@ BodyStreamBuffer::BodyStreamBuffer(ScriptState* scriptState, ScriptValue stream)
m_scriptState(scriptState),
m_madeFromReadableStream(true) {
DCHECK(ReadableStreamOperations::isReadableStream(scriptState, stream));
- v8::Local<v8::Value> bodyValue = toV8(this, scriptState);
+ v8::Local<v8::Value> bodyValue = ToV8(this, scriptState);
DCHECK(!bodyValue.IsEmpty());
DCHECK(bodyValue->IsObject());
v8::Local<v8::Object> body = bodyValue.As<v8::Object>();
@@ -116,7 +116,7 @@ BodyStreamBuffer::BodyStreamBuffer(ScriptState* scriptState, ScriptValue stream)
ScriptValue BodyStreamBuffer::stream() {
ScriptState::Scope scope(m_scriptState.get());
- v8::Local<v8::Value> bodyValue = toV8(this, m_scriptState.get());
+ v8::Local<v8::Value> bodyValue = ToV8(this, m_scriptState.get());
DCHECK(!bodyValue.IsEmpty());
DCHECK(bodyValue->IsObject());
v8::Local<v8::Object> body = bodyValue.As<v8::Object>();
« no previous file with comments | « third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp ('k') | third_party/WebKit/Source/modules/fetch/Request.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698