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

Unified Diff: chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controller.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/ui/cocoa/extensions/extension_installed_bubble_controller.h
diff --git a/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controller.h b/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controller.h
index b31d6c65757039ca08caded66225d4ffdc2a6596..a4a76b904ba6012e63a73343f25385e63a8d4618 100644
--- a/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controller.h
+++ b/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controller.h
@@ -15,13 +15,13 @@
#include "third_party/skia/include/core/SkBitmap.h"
class Browser;
-class Extension;
class ExtensionLoadedNotificationObserver;
@class HoverCloseButton;
@class InfoBubbleView;
namespace extensions {
class BundleInstaller;
+class Extension;
}
namespace extension_installed_bubble {
@@ -52,7 +52,7 @@ typedef enum {
// future.
@interface ExtensionInstalledBubbleController : BaseBubbleController {
@private
- const Extension* extension_; // weak
+ const extensions::Extension* extension_; // weak
const extensions::BundleInstaller* bundle_; // weak
Browser* browser_; // weak
scoped_nsobject<NSImage> icon_;
@@ -83,14 +83,14 @@ typedef enum {
IBOutlet NSTextField* failedItemsMsg_;
}
-@property(nonatomic, readonly) const Extension* extension;
+@property(nonatomic, readonly) const extensions::Extension* extension;
@property(nonatomic, readonly) const extensions::BundleInstaller* bundle;
@property(nonatomic) BOOL pageActionRemoved;
// Initialize the window, and then create observers to wait for the extension
// to complete loading, or the browser window to close.
- (id)initWithParentWindow:(NSWindow*)parentWindow
- extension:(const Extension*)extension
+ extension:(const extensions::Extension*)extension
bundle:(const extensions::BundleInstaller*)bundle
browser:(Browser*)browser
icon:(SkBitmap)icon;

Powered by Google App Engine
This is Rietveld 408576698