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

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 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/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 aa31288ac2e879b0f2cafb4f7631e1b57a83ec9f..8870a20397cb94280ca43c59c57ba3e7832ee3f8 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