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

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 10824030: Move ExtensionHost into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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/chrome_content_browser_client.cc
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
index 658cbe45bfaf22c0e2595365d722b6b747854068..ce96bd73bc9eea7fabacbbf4a21c9959f0e86ad8 100644
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -628,7 +628,7 @@ bool ChromeContentBrowserClient::ShouldTryToUseExistingProcessHost(
for (ExtensionProcessManager::const_iterator iter =
epm->background_hosts().begin();
iter != epm->background_hosts().end(); ++iter) {
- ExtensionHost* host = *iter;
+ const extensions::ExtensionHost* host = *iter;
process_ids.insert(host->render_process_host()->GetID());
}
}

Powered by Google App Engine
This is Rietveld 408576698