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

Unified Diff: Source/platform/testing/RunAllTests.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (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 | « Source/platform/testing/ArenaTestHelpers.h ('k') | Source/platform/testing/TreeTestHelpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/testing/RunAllTests.cpp
diff --git a/Source/platform/testing/RunAllTests.cpp b/Source/platform/testing/RunAllTests.cpp
index b3e6fbaa20fff634ded5494b89f1f6c125b50587..eb448a1cee917909cf33212c8f543201397de270 100644
--- a/Source/platform/testing/RunAllTests.cpp
+++ b/Source/platform/testing/RunAllTests.cpp
@@ -56,16 +56,16 @@ int main(int argc, char** argv)
WTF::initialize(CurrentTime, 0);
WTF::initializeMainThread(0);
- WebCore::TestingPlatformSupport::Config platformConfig;
- WebCore::TestingPlatformSupport platform(platformConfig);
+ blink::TestingPlatformSupport::Config platformConfig;
+ blink::TestingPlatformSupport platform(platformConfig);
- WebCore::Heap::init();
- WebCore::ThreadState::attachMainThread();
- WebCore::Partitions::init();
- WebCore::EventTracer::initialize();
+ blink::Heap::init();
+ blink::ThreadState::attachMainThread();
+ blink::Partitions::init();
+ blink::EventTracer::initialize();
int result = base::RunUnitTestsUsingBaseTestSuite(argc, argv);
- WebCore::Partitions::shutdown();
- WebCore::ThreadState::detachMainThread();
- WebCore::Heap::shutdown();
+ blink::Partitions::shutdown();
+ blink::ThreadState::detachMainThread();
+ blink::Heap::shutdown();
return result;
}
« no previous file with comments | « Source/platform/testing/ArenaTestHelpers.h ('k') | Source/platform/testing/TreeTestHelpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698