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

Unified Diff: chrome/browser/ui/webui/inspect_ui.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 2 Created 8 years, 7 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/ui/webui/inspect_ui.cc
diff --git a/chrome/browser/ui/webui/inspect_ui.cc b/chrome/browser/ui/webui/inspect_ui.cc
index a5a0194effaa718fadb03bbf3306c8fec74c74bf..482aa86a9ce5c7799a529ec6cb6d21c9b435beef 100644
--- a/chrome/browser/ui/webui/inspect_ui.cc
+++ b/chrome/browser/ui/webui/inspect_ui.cc
@@ -132,8 +132,8 @@ DictionaryValue* BuildTargetDescriptor(RenderViewHost* rvh, bool is_tab) {
web_contents->GetBrowserContext());
if (profile) {
ExtensionService* extension_service = profile->GetExtensionService();
- const Extension* extension = extension_service->extensions()->GetByID(
- web_contents->GetURL().host());
+ const extensions::Extension* extension = extension_service->
+ extensions()->GetByID(web_contents->GetURL().host());
if (extension) {
target_type = kExtensionTargetType;
title = extension->name();

Powered by Google App Engine
This is Rietveld 408576698