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

Unified Diff: chrome/browser/extensions/extension_uninstall_dialog.h

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_uninstall_dialog.h
diff --git a/chrome/browser/extensions/extension_uninstall_dialog.h b/chrome/browser/extensions/extension_uninstall_dialog.h
index b03561d3edf9ac51a379a74324947dceaa6d23ab..83b4ab19a422d42ab94e193d481245a600725341 100644
--- a/chrome/browser/extensions/extension_uninstall_dialog.h
+++ b/chrome/browser/extensions/extension_uninstall_dialog.h
@@ -15,6 +15,10 @@
class MessageLoop;
class Profile;
+namespace extensions {
+class Extension;
+}
+
class ExtensionUninstallDialog
: public ImageLoadingTracker::Observer,
public base::SupportsWeakPtr<ExtensionUninstallDialog> {
@@ -41,7 +45,7 @@ class ExtensionUninstallDialog
// Starts the process of showing a confirmation UI, which is split into two.
// 1) Set off a 'load icon' task.
// 2) Handle the load icon response and show the UI (OnImageLoaded).
- void ConfirmUninstall(const Extension* extension);
+ void ConfirmUninstall(const extensions::Extension* extension);
protected:
// Constructor used by the derived classes.
@@ -53,7 +57,7 @@ class ExtensionUninstallDialog
Delegate* delegate_;
// The extension we are showing the dialog for.
- const Extension* extension_;
+ const extensions::Extension* extension_;
// The extensions icon.
SkBitmap icon_;
« no previous file with comments | « chrome/browser/extensions/extension_ui_unittest.cc ('k') | chrome/browser/extensions/extension_uninstall_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698