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

Unified Diff: chrome/browser/extensions/extension_infobar_delegate.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 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/extensions/extension_infobar_delegate.cc
diff --git a/chrome/browser/extensions/extension_infobar_delegate.cc b/chrome/browser/extensions/extension_infobar_delegate.cc
index 0418d682be65a00cbfdb6ee2b8d3e9a9287b3a1a..8f9d8c744d72b02bb182860edece2c45593bb68a 100644
--- a/chrome/browser/extensions/extension_infobar_delegate.cc
+++ b/chrome/browser/extensions/extension_infobar_delegate.cc
@@ -18,7 +18,7 @@
ExtensionInfoBarDelegate::ExtensionInfoBarDelegate(
Browser* browser,
InfoBarTabHelper* infobar_helper,
- const Extension* extension,
+ const extensions::Extension* extension,
const GURL& url,
int height)
: InfoBarDelegate(infobar_helper),
@@ -97,7 +97,8 @@ void ExtensionInfoBarDelegate::Observe(
} else {
DCHECK(type == chrome::NOTIFICATION_EXTENSION_UNLOADED);
if (extension_ ==
- content::Details<UnloadedExtensionInfo>(details)->extension) {
+ content::Details<extensions::UnloadedExtensionInfo>(
+ details)->extension) {
RemoveSelf();
}
}
« no previous file with comments | « chrome/browser/extensions/extension_infobar_delegate.h ('k') | chrome/browser/extensions/extension_input_ime_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698