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

Unified Diff: content/browser/debugger/worker_devtools_manager_io.cc

Issue 7576002: DevTools: browser hangs if inspected shared worker is restarted (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/debugger/worker_devtools_manager_io.cc
diff --git a/content/browser/debugger/worker_devtools_manager_io.cc b/content/browser/debugger/worker_devtools_manager_io.cc
index 07ed950a818fe718ee426fc194321f83b4c39a65..1f4ae8634055f6280bf5fdfff7fd53e7335a2846 100644
--- a/content/browser/debugger/worker_devtools_manager_io.cc
+++ b/content/browser/debugger/worker_devtools_manager_io.cc
@@ -146,6 +146,7 @@ class WorkerDevToolsManagerIO::InspectedWorkersList {
while (it != map_.end()) {
if (it->host->id() == host_id && it->route_id == route_id)
break;
+ ++it;
pfeldman1 2011/08/04 10:12:20 nice. Could you please test this?
}
return it;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698