| Index: base/message_loop/message_loop_unittest.cc
|
| diff --git a/base/message_loop/message_loop_unittest.cc b/base/message_loop/message_loop_unittest.cc
|
| index 9c1701756882febefde91d667e3b38312da8cb11..89f9a40a5efc40aab515686d291ec1a6a596ba9a 100644
|
| --- a/base/message_loop/message_loop_unittest.cc
|
| +++ b/base/message_loop/message_loop_unittest.cc
|
| @@ -119,7 +119,7 @@ void RunTest_PostDelayedTask_SharedTimer_SubPump() {
|
| Bind(&RecordRunTimeFunc, &run_time, &num_tasks),
|
| TimeDelta::FromSeconds(1000));
|
|
|
| - // This slightly delayed task should run from within SubPumpFunc).
|
| + // This slightly delayed task should run from within SubPumpFunc.
|
| loop.PostDelayedTask(
|
| FROM_HERE,
|
| Bind(&PostQuitMessage, 0),
|
| @@ -600,7 +600,7 @@ void RunTest_WaitForIO() {
|
| TestIOHandler handler2(kPipeName2, callback2_called.Get(), true);
|
| thread_loop->PostTask(FROM_HERE, Bind(&TestIOHandler::Init,
|
| Unretained(&handler1)));
|
| - // TODO(ajwong): Do we really need such long Sleeps in ths function?
|
| + // TODO(ajwong): Do we really need such long Sleeps in this function?
|
| // Make sure the thread runs and sleeps for lack of work.
|
| TimeDelta delay = TimeDelta::FromMilliseconds(100);
|
| PlatformThread::Sleep(delay);
|
| @@ -645,7 +645,7 @@ TEST(MessageLoopTest, PostDelayedTask_SharedTimer_SubPump) {
|
| RunTest_PostDelayedTask_SharedTimer_SubPump();
|
| }
|
|
|
| -// This test occasionally hangs http://crbug.com/44567
|
| +// This test occasionally hangs. See http://crbug.com/44567.
|
| TEST(MessageLoopTest, DISABLED_RecursiveDenial2) {
|
| RunTest_RecursiveDenial2(MessageLoop::TYPE_DEFAULT);
|
| RunTest_RecursiveDenial2(MessageLoop::TYPE_UI);
|
| @@ -653,7 +653,7 @@ TEST(MessageLoopTest, DISABLED_RecursiveDenial2) {
|
| }
|
|
|
| TEST(MessageLoopTest, RecursiveSupport2) {
|
| - // This test requires a UI loop
|
| + // This test requires a UI loop.
|
| RunTest_RecursiveSupport2(MessageLoop::TYPE_UI);
|
| }
|
| #endif // defined(OS_WIN)
|
|
|