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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.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/V8V0CustomElementLifecycleCallbacks.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp b/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp
index 9aae8791e0594e0721d9abb92224eeabca989efc..261f30fbd15655ee7fd4c2b86bb2aeba1d68d0a8 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp
@@ -159,7 +159,7 @@ void V8V0CustomElementLifecycleCallbacks::created(Element* element) {
v8::Isolate* isolate = m_scriptState->isolate();
v8::Local<v8::Context> context = m_scriptState->context();
v8::Local<v8::Value> receiverValue =
- toV8(element, context->Global(), isolate);
+ ToV8(element, context->Global(), isolate);
if (receiverValue.IsEmpty())
return;
v8::Local<v8::Object> receiver = receiverValue.As<v8::Object>();
@@ -202,7 +202,7 @@ void V8V0CustomElementLifecycleCallbacks::attributeChanged(
ScriptState::Scope scope(m_scriptState.get());
v8::Isolate* isolate = m_scriptState->isolate();
v8::Local<v8::Context> context = m_scriptState->context();
- v8::Local<v8::Value> receiver = toV8(element, context->Global(), isolate);
+ v8::Local<v8::Value> receiver = ToV8(element, context->Global(), isolate);
if (receiver.IsEmpty())
return;
@@ -238,7 +238,7 @@ void V8V0CustomElementLifecycleCallbacks::call(
if (callback.IsEmpty())
return;
- v8::Local<v8::Value> receiver = toV8(element, context->Global(), isolate);
+ v8::Local<v8::Value> receiver = ToV8(element, context->Global(), isolate);
if (receiver.IsEmpty())
return;

Powered by Google App Engine
This is Rietveld 408576698