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

Unified Diff: third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.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/csspaint/CSSPaintDefinition.cpp
diff --git a/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp b/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp
index 778a4342aa3d2ad010cc675ad1d68ab0fb6b0e72..99e62a37440b3fd4655730dea19fd00c78c87960 100644
--- a/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp
@@ -93,9 +93,9 @@ PassRefPtr<Image> CSSPaintDefinition::paint(const LayoutObject& layoutObject,
m_nativeInvalidationProperties, m_customInvalidationProperties);
v8::Local<v8::Value> argv[] = {
- toV8(renderingContext, m_scriptState->context()->Global(), isolate),
- toV8(paintSize, m_scriptState->context()->Global(), isolate),
- toV8(styleMap, m_scriptState->context()->Global(), isolate)};
+ ToV8(renderingContext, m_scriptState->context()->Global(), isolate),
+ ToV8(paintSize, m_scriptState->context()->Global(), isolate),
+ ToV8(styleMap, m_scriptState->context()->Global(), isolate)};
v8::Local<v8::Function> paint = m_paint.newLocal(isolate);

Powered by Google App Engine
This is Rietveld 408576698