| Index: chrome/renderer/about_handler.cc
|
| diff --git a/chrome/renderer/about_handler.cc b/chrome/renderer/about_handler.cc
|
| index 1b21e76acda7f729063dd2473836f9e076443223..939793ced107a1c2f3df30258f6aec6b0a5f918c 100644
|
| --- a/chrome/renderer/about_handler.cc
|
| +++ b/chrome/renderer/about_handler.cc
|
| @@ -61,13 +61,13 @@ void AboutHandler::AboutKill() {
|
| // static
|
| void AboutHandler::AboutHang() {
|
| for (;;) {
|
| - base::PlatformThread::Sleep(1000);
|
| + base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
|
| }
|
| }
|
|
|
| // static
|
| void AboutHandler::AboutShortHang() {
|
| - base::PlatformThread::Sleep(20000);
|
| + base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(20));
|
| }
|
|
|
| // static
|
|
|