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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/Maplike.h

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/Maplike.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/Maplike.h b/third_party/WebKit/Source/bindings/core/v8/Maplike.h
index b4809394fc1c4bcebc4a440ff36f5f9c2d0969c7..fd8032456ce303f83bd40d1d0724cfe612b56907 100644
--- a/third_party/WebKit/Source/bindings/core/v8/Maplike.h
+++ b/third_party/WebKit/Source/bindings/core/v8/Maplike.h
@@ -27,7 +27,7 @@ class Maplike : public PairIterable<KeyType, ValueType> {
ValueType value;
if (getMapEntry(scriptState, key, value, exceptionState))
return ScriptValue(scriptState,
- toV8(value, scriptState->context()->Global(),
+ ToV8(value, scriptState->context()->Global(),
scriptState->isolate()));
return ScriptValue(scriptState, v8::Undefined(scriptState->isolate()));
}

Powered by Google App Engine
This is Rietveld 408576698