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

Unified Diff: Source/core/testing/PrivateScriptTestTest.cpp

Issue 452743003: Rename V8X::fooMethodImplementedInPrivateScript to V8X::PrivateScript::fooMethod (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/bindings/tests/results/V8TestObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/PrivateScriptTestTest.cpp
diff --git a/Source/core/testing/PrivateScriptTestTest.cpp b/Source/core/testing/PrivateScriptTestTest.cpp
index 50eaa515332e1fa94150f2cd35f5fffd3c552de0..6eedba0b5ce586fe0c5dee95464a613d3832965a 100644
--- a/Source/core/testing/PrivateScriptTestTest.cpp
+++ b/Source/core/testing/PrivateScriptTestTest.cpp
@@ -46,7 +46,7 @@ TEST_F(PrivateScriptTestTest, invokePrivateScriptMethodFromCPP)
{
bool success;
int result;
- success = V8PrivateScriptTest::addIntegerForPrivateScriptOnlyMethodImplementedInPrivateScript(frame(), privateScriptTest(), 100, 200, &result);
+ success = V8PrivateScriptTest::PrivateScript::addIntegerForPrivateScriptOnlyMethod(frame(), privateScriptTest(), 100, 200, &result);
EXPECT_TRUE(success);
EXPECT_EQ(result, 300);
}
@@ -55,12 +55,12 @@ TEST_F(PrivateScriptTestTest, invokePrivateScriptAttributeFromCPP)
{
bool success;
String result;
- success = V8PrivateScriptTest::stringAttributeForPrivateScriptOnlyAttributeGetterImplementedInPrivateScript(frame(), privateScriptTest(), &result);
+ success = V8PrivateScriptTest::PrivateScript::stringAttributeForPrivateScriptOnlyAttributeGetter(frame(), privateScriptTest(), &result);
EXPECT_TRUE(success);
EXPECT_EQ(result, "yyy");
- success = V8PrivateScriptTest::stringAttributeForPrivateScriptOnlyAttributeSetterImplementedInPrivateScript(frame(), privateScriptTest(), "foo");
+ success = V8PrivateScriptTest::PrivateScript::stringAttributeForPrivateScriptOnlyAttributeSetter(frame(), privateScriptTest(), "foo");
EXPECT_TRUE(success);
- success = V8PrivateScriptTest::stringAttributeForPrivateScriptOnlyAttributeGetterImplementedInPrivateScript(frame(), privateScriptTest(), &result);
+ success = V8PrivateScriptTest::PrivateScript::stringAttributeForPrivateScriptOnlyAttributeGetter(frame(), privateScriptTest(), &result);
EXPECT_TRUE(success);
EXPECT_EQ(result, "foo");
}
« no previous file with comments | « Source/bindings/tests/results/V8TestObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698