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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.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/custom/V8HTMLAllCollectionCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp
index df3a8afc2d34d0ad1fbe7ce9325d69378f5908aa..193ad21fd32e83be8582702f0d8bc884b1c367a5 100644
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp
@@ -50,11 +50,11 @@ static v8::Local<v8::Value> getNamedItems(HTMLAllCollection* collection,
return v8Undefined();
if (namedItems.size() == 1)
- return toV8(namedItems.at(0).release(), info.Holder(), info.GetIsolate());
+ return ToV8(namedItems.at(0).release(), info.Holder(), info.GetIsolate());
// FIXME: HTML5 specification says this should be a HTMLCollection.
// http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#htmlallcollection
- return toV8(StaticElementList::adopt(namedItems), info.Holder(),
+ return ToV8(StaticElementList::adopt(namedItems), info.Holder(),
info.GetIsolate());
}
@@ -86,7 +86,7 @@ static v8::Local<v8::Value> getItem(
indexedWithNonNumberFeature);
}
Element* result = collection->item(index->Value());
- return toV8(result, info.Holder(), info.GetIsolate());
+ return ToV8(result, info.Holder(), info.GetIsolate());
}
void V8HTMLAllCollection::itemMethodCustom(

Powered by Google App Engine
This is Rietveld 408576698