| Index: content/browser/shared_worker/shared_worker_host.cc
|
| diff --git a/content/browser/shared_worker/shared_worker_host.cc b/content/browser/shared_worker/shared_worker_host.cc
|
| index 18936f3e920d0f5f2b0a08957faed4b5d63f1506..6f6e4207a73c831374ffbbb2449fe7f38292b754 100644
|
| --- a/content/browser/shared_worker/shared_worker_host.cc
|
| +++ b/content/browser/shared_worker/shared_worker_host.cc
|
| @@ -5,7 +5,7 @@
|
| #include "content/browser/shared_worker/shared_worker_host.h"
|
|
|
| #include "base/metrics/histogram.h"
|
| -#include "content/browser/devtools/shared_worker_devtools_manager.h"
|
| +#include "content/browser/devtools/embedded_worker_devtools_manager.h"
|
| #include "content/browser/frame_host/render_frame_host_delegate.h"
|
| #include "content/browser/frame_host/render_frame_host_impl.h"
|
| #include "content/browser/message_port_service.h"
|
| @@ -33,14 +33,14 @@ void WorkerCrashCallback(int render_process_unique_id, int render_frame_id) {
|
|
|
| void NotifyWorkerScriptLoadedOnUI(int worker_process_id, int worker_route_id) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - SharedWorkerDevToolsManager::GetInstance()->WorkerContextStarted(
|
| + EmbeddedWorkerDevToolsManager::GetInstance()->WorkerContextStarted(
|
| worker_process_id, worker_route_id);
|
| }
|
|
|
| void NotifyWorkerDestroyedOnUI(int worker_process_id, int worker_route_id) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - SharedWorkerDevToolsManager::GetInstance()->WorkerDestroyed(worker_process_id,
|
| - worker_route_id);
|
| + EmbeddedWorkerDevToolsManager::GetInstance()->WorkerDestroyed(
|
| + worker_process_id, worker_route_id);
|
| }
|
|
|
| } // namespace
|
|
|