Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: content/browser/devtools/service_worker_devtools_manager.cc

Issue 1003263002: DevTools: support scopes and iframes when debugging service workers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/devtools/service_worker_devtools_agent_host.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/service_worker_devtools_manager.cc
diff --git a/content/browser/devtools/service_worker_devtools_manager.cc b/content/browser/devtools/service_worker_devtools_manager.cc
index 116cdbcb2d12ac57d35780abb8ca397ccb7ffde1..ced5ee229ac5dc01b4e90d81850318677d1b51c0 100644
--- a/content/browser/devtools/service_worker_devtools_manager.cc
+++ b/content/browser/devtools/service_worker_devtools_manager.cc
@@ -127,9 +127,9 @@ void ServiceWorkerDevToolsManager::WorkerDestroyed(int worker_process_id,
AgentHostMap::iterator it = workers_.find(id);
DCHECK(it != workers_.end());
scoped_refptr<WorkerDevToolsAgentHost> agent_host(it->second);
- FOR_EACH_OBSERVER(Observer, observer_list_, WorkerDestroyed(it->second));
agent_host->WorkerDestroyed();
DevToolsManager::GetInstance()->AgentHostChanged(agent_host);
+ FOR_EACH_OBSERVER(Observer, observer_list_, WorkerDestroyed(it->second));
}
void ServiceWorkerDevToolsManager::RemoveInspectedWorkerData(WorkerId id) {
« no previous file with comments | « content/browser/devtools/service_worker_devtools_agent_host.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698