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

Unified Diff: Source/web/tests/RunAllTests.cpp

Issue 393123005: Change webkit_unit_tests to use webkit_support.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/RunAllTests.cpp
diff --git a/Source/web/tests/RunAllTests.cpp b/Source/web/tests/RunAllTests.cpp
index e2b7b3a4e60a033bff76473d0653f328285e5a38..97fa90b3a5d3e666f6f9bb0000809f63f12b0851 100644
--- a/Source/web/tests/RunAllTests.cpp
+++ b/Source/web/tests/RunAllTests.cpp
@@ -37,7 +37,7 @@
#include "public/platform/Platform.h"
#include "public/web/WebKit.h"
-#include <content/test/webkit_unit_test_support.h>
+#include <content/test/webkit_support.h>
#if defined(BLINK_DLL_UNITTEST)
#include "web/tests/WebUnitTests.h"
@@ -51,15 +51,15 @@ int main(int argc, char** argv)
{
#if defined(BLINK_DLL_UNITTEST)
blink::InitTestSuite(argc, argv);
- content::SetUpTestEnvironmentForWebKitUnitTests();
+ content::SetUpTestEnvironmentForUnitTests();
int result = blink::RunAllUnitTests();
- content::TearDownEnvironmentForWebKitUnitTests();
+ content::TearDownTestEnvironment();
blink::DeleteTestSuite();
#else
TestSuite testSuite(argc, argv);
- content::SetUpTestEnvironmentForWebKitUnitTests();
+ content::SetUpTestEnvironmentForUnitTests();
int result = testSuite.Run();
- content::TearDownEnvironmentForWebKitUnitTests();
+ content::TearDownTestEnvironment();
#endif
return result;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698