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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/Iterable.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/Iterable.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/Iterable.h b/third_party/WebKit/Source/bindings/core/v8/Iterable.h
index 8b005d55ad6cf61a166e85ff1cef0efb6f181c03..84e61a3e4dfd95098bae38b8716c604d998a7a61 100644
--- a/third_party/WebKit/Source/bindings/core/v8/Iterable.h
+++ b/third_party/WebKit/Source/bindings/core/v8/Iterable.h
@@ -65,8 +65,8 @@ class Iterable {
ASSERT(!exceptionState.hadException());
- args[0] = toV8(value, creationContext, isolate);
- args[1] = toV8(key, creationContext, isolate);
+ args[0] = ToV8(value, creationContext, isolate);
+ args[1] = ToV8(key, creationContext, isolate);
if (args[0].IsEmpty() || args[1].IsEmpty()) {
if (tryCatch.HasCaught())
exceptionState.rethrowV8Exception(tryCatch.Exception());
@@ -124,9 +124,9 @@ class Iterable {
Vector<ScriptValue, 2> entry;
entry.push_back(
- ScriptValue(scriptState, toV8(key, creationContext, isolate)));
+ ScriptValue(scriptState, ToV8(key, creationContext, isolate)));
entry.push_back(
- ScriptValue(scriptState, toV8(value, creationContext, isolate)));
+ ScriptValue(scriptState, ToV8(value, creationContext, isolate)));
return entry;
}
};
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/IDLDictionaryBase.h ('k') | third_party/WebKit/Source/bindings/core/v8/Maplike.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698