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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.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/SerializedScriptValueTest.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.cpp b/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.cpp
index c9d89d19f2dcab1742897a32adcb3910a5b7cd86..63e8847dccd565954ff224812e730d551667d84c 100644
--- a/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.cpp
@@ -25,7 +25,7 @@ TEST(SerializedScriptValueTest, UserSelectedFile) {
ASSERT_EQ(filePath, originalFile->path());
v8::Local<v8::Value> v8OriginalFile =
- toV8(originalFile, scope.context()->Global(), scope.isolate());
+ ToV8(originalFile, scope.context()->Global(), scope.isolate());
RefPtr<SerializedScriptValue> serializedScriptValue =
SerializedScriptValue::serialize(scope.isolate(), v8OriginalFile, nullptr,
nullptr, ASSERT_NO_EXCEPTION);
@@ -48,7 +48,7 @@ TEST(SerializedScriptValueTest, FileConstructorFile) {
ASSERT_EQ("hello.txt", originalFile->name());
v8::Local<v8::Value> v8OriginalFile =
- toV8(originalFile, scope.context()->Global(), scope.isolate());
+ ToV8(originalFile, scope.context()->Global(), scope.isolate());
RefPtr<SerializedScriptValue> serializedScriptValue =
SerializedScriptValue::serialize(scope.isolate(), v8OriginalFile, nullptr,
nullptr, ASSERT_NO_EXCEPTION);

Powered by Google App Engine
This is Rietveld 408576698