| Index: content/browser/service_worker/service_worker_version.cc
|
| diff --git a/content/browser/service_worker/service_worker_version.cc b/content/browser/service_worker/service_worker_version.cc
|
| index dbbcd8a41f526bf020aaa9f973f42a9512aa4791..967ee4c485a2abbb7d3679312671ff538de9936f 100644
|
| --- a/content/browser/service_worker/service_worker_version.cc
|
| +++ b/content/browser/service_worker/service_worker_version.cc
|
| @@ -52,6 +52,7 @@
|
| #include "content/public/common/result_codes.h"
|
| #include "net/http/http_response_headers.h"
|
| #include "net/http/http_response_info.h"
|
| +#include "third_party/WebKit/public/web/WebConsoleMessage.h"
|
|
|
| namespace content {
|
|
|
| @@ -1726,7 +1727,7 @@ void ServiceWorkerVersion::OnPingTimeout() {
|
| DCHECK(running_status() == EmbeddedWorkerStatus::STARTING ||
|
| running_status() == EmbeddedWorkerStatus::RUNNING);
|
| // TODO(falken): Change the error code to SERVICE_WORKER_ERROR_TIMEOUT.
|
| - embedded_worker_->AddMessageToConsole(CONSOLE_MESSAGE_LEVEL_DEBUG,
|
| + embedded_worker_->AddMessageToConsole(blink::WebConsoleMessage::LevelDebug,
|
| kNotRespondingErrorMesage);
|
| StopWorkerIfIdle();
|
| }
|
|
|