| Index: Source/web/tests/WebUnitTests.h
|
| diff --git a/Source/web/tests/WebUnitTests.h b/Source/web/tests/WebUnitTests.h
|
| index 9b8c2a7b6a4ce4a635f3cb0f5407e49a3a40add5..c284145443a1154f5675c2065b0361d48f7300c2 100644
|
| --- a/Source/web/tests/WebUnitTests.h
|
| +++ b/Source/web/tests/WebUnitTests.h
|
| @@ -35,20 +35,21 @@
|
|
|
| namespace blink {
|
|
|
| -// In chromium multi-dll build, webkit unittest code are compiled in webkit.dll.
|
| -// This means the test suite object needs to be initialized inside WebKit.
|
| +// In chromium multi-dll build, webkit unittest code are compiled in
|
| +// blink_web.dll. This means the test suite object needs to be initialized
|
| +// inside Blink.
|
| //
|
| // However, the webkit unittest code needs to also initialize/teardown.
|
| // This leads to the API here, which has explicit managment of the TestSuite
|
| // lifetime.
|
|
|
| -// Initialize the global testSuite object inside webkit.dll
|
| +// Initialize the global testSuite object inside blink_web.dll
|
| BLINK_EXPORT void InitTestSuite(int argc, char** argv);
|
|
|
| -// Runs all tests found inside webkit.dll
|
| +// Runs all tests found inside blink_web.dll
|
| BLINK_EXPORT int RunAllUnitTests();
|
|
|
| -// Deletes the global testSuite object inside webkit.dll
|
| +// Deletes the global testSuite object inside blink_web.dll
|
| BLINK_EXPORT void DeleteTestSuite();
|
|
|
| } // namespace blink
|
|
|