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

Unified Diff: chrome/browser/ui/views/extensions/extension_installed_bubble.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/views/extensions/extension_installed_bubble.cc
diff --git a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
index 8b767db6454c7c6d2c22f34ddaed55c06a212d7d..fdf87f0a81b8e8ec2366107f88bb969302ba897c 100644
--- a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
+++ b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
@@ -41,6 +41,8 @@
#include "ui/views/layout/fill_layout.h"
#include "ui/views/layout/layout_constants.h"
+using extensions::Extension;
+
namespace {
const int kIconSize = 43;
@@ -387,7 +389,7 @@ void ExtensionInstalledBubble::Observe(
}
} else if (type == chrome::NOTIFICATION_EXTENSION_UNLOADED) {
const Extension* extension =
- content::Details<UnloadedExtensionInfo>(details)->extension;
+ content::Details<extensions::UnloadedExtensionInfo>(details)->extension;
if (extension == extension_)
extension_ = NULL;
} else {

Powered by Google App Engine
This is Rietveld 408576698