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

Unified Diff: chrome/browser/automation/automation_provider_observers.cc

Issue 10113005: Remove EPM:all_hosts_ and use all_extension_views_ instead. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: interactive_ui_tests Created 8 years, 8 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
Index: chrome/browser/automation/automation_provider_observers.cc
diff --git a/chrome/browser/automation/automation_provider_observers.cc b/chrome/browser/automation/automation_provider_observers.cc
index b49a726257fab96218aea318b5e7554409f45644..9d5564be30d412a744f324097c2a48270f87d8ca 100644
--- a/chrome/browser/automation/automation_provider_observers.cc
+++ b/chrome/browser/automation/automation_provider_observers.cc
@@ -507,8 +507,9 @@ void TabCountChangeObserver::CheckTabCount() {
}
bool DidExtensionHostsStopLoading(ExtensionProcessManager* manager) {
- for (ExtensionProcessManager::const_iterator iter = manager->begin();
- iter != manager->end(); ++iter) {
+ for (ExtensionProcessManager::const_iterator iter =
+ manager->background_hosts().begin();
+ iter != manager->background_hosts().end(); ++iter) {
if (!(*iter)->did_stop_loading())
return false;
}
« no previous file with comments | « no previous file | chrome/browser/automation/automation_util.h » ('j') | chrome/browser/automation/automation_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698