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

Side by Side Diff: chrome/browser/ui/cocoa/extensions/extension_infobar_controller.h

Issue 6377001: [Mac] Organize all infobar files into chrome/browser/ui/cocoa/infobars/.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_
7 #pragma once 7 #pragma once
8 8
9 #import "chrome/browser/ui/cocoa/infobar_controller.h" 9 #import "chrome/browser/ui/cocoa/infobars/infobar_controller.h"
10 10
11 #import <Cocoa/Cocoa.h> 11 #import <Cocoa/Cocoa.h>
12 12
13 #import "base/scoped_nsobject.h" 13 #import "base/scoped_nsobject.h"
14 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
15 15
16 @class ExtensionActionContextMenu; 16 @class ExtensionActionContextMenu;
17 class ExtensionInfoBarDelegate; 17 class ExtensionInfoBarDelegate;
18 class InfobarBridge; 18 class InfobarBridge;
19 @class MenuButton; 19 @class MenuButton;
(...skipping 12 matching lines...) Expand all
32 // The context menu that pops up when the left button is clicked. 32 // The context menu that pops up when the left button is clicked.
33 scoped_nsobject<ExtensionActionContextMenu> contextMenu_; 33 scoped_nsobject<ExtensionActionContextMenu> contextMenu_;
34 34
35 // Helper class to bridge C++ and ObjC functionality together for the infobar. 35 // Helper class to bridge C++ and ObjC functionality together for the infobar.
36 scoped_ptr<InfobarBridge> bridge_; 36 scoped_ptr<InfobarBridge> bridge_;
37 } 37 }
38 38
39 @end 39 @end
40 40
41 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_ 41 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INFOBAR_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698