Chromium Code Reviews

Unified Diff: chrome/browser/cocoa/extensions/extension_infobar_controller.h

Issue 2858028: [Mac] Base implementation of extension infobars on the mac.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/cocoa/extensions/extension_infobar_controller.h
===================================================================
--- chrome/browser/cocoa/extensions/extension_infobar_controller.h (revision 0)
+++ chrome/browser/cocoa/extensions/extension_infobar_controller.h (revision 0)
@@ -0,0 +1,22 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_
+#define CHROME_BROWSER_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_
+
+#import "chrome/browser/cocoa/infobar_controller.h"
+
+#import <Cocoa/Cocoa.h>
+
+@interface ExtensionInfoBarController : InfoBarController {
+ // The native extension view retrieved from the extension host. Weak.
+ NSView* extensionView_;
+
+ // The window containing this InfoBar. Weak.
+ NSWindow* window_;
+}
+
+@end
+
+#endif // CHROME_BROWSER_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_
Property changes on: chrome/browser/cocoa/extensions/extension_infobar_controller.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/cocoa/extension_view_mac.mm ('k') | chrome/browser/cocoa/extensions/extension_infobar_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine