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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.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/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
index c1642c55396820dd2d79407cb5c77945b29d0555..8e2ca5ff72921208fcc3f0ac73470a07932767fd 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp
@@ -27,14 +27,14 @@ void V8ResizeObserverCallback::handleEvent(
if (m_callback.isEmpty())
return;
- v8::Local<v8::Value> observerHandle = toV8(
+ v8::Local<v8::Value> observerHandle = ToV8(
observer, m_scriptState->context()->Global(), m_scriptState->isolate());
if (!observerHandle->IsObject())
return;
v8::Local<v8::Object> thisObject =
v8::Local<v8::Object>::Cast(observerHandle);
- v8::Local<v8::Value> entriesHandle = toV8(
+ v8::Local<v8::Value> entriesHandle = ToV8(
entries, m_scriptState->context()->Global(), m_scriptState->isolate());
if (entriesHandle.IsEmpty())
return;

Powered by Google App Engine
This is Rietveld 408576698