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

Unified Diff: chrome/browser/memory_details.cc

Issue 8827013: Move/replace/rename URL-based extension getters from ExtensionService to/in ExtensionSet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: id Created 9 years 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/memory_details.cc
diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc
index c06ed53ede94dc111ce5231eb72cb4ea5192f4b3..eac05b60e36d65ddb2fbac66f1432e9daa4307b6 100644
--- a/chrome/browser/memory_details.cc
+++ b/chrome/browser/memory_details.cc
@@ -233,7 +233,7 @@ void MemoryDetails::CollectChildInfoOnUIThread() {
if (!contents) {
if (extension_process_map->Contains(host->process()->GetID())) {
const Extension* extension =
- extension_service->GetExtensionByURL(url);
+ extension_service->extensions()->GetByID(url.host());
if (extension) {
string16 title = UTF8ToUTF16(extension->name());
process.titles.push_back(title);

Powered by Google App Engine
This is Rietveld 408576698