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

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

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 6 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_ACTION_CONTEXT_MENU_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_
6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_ 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include "base/memory/scoped_nsobject.h" 10 #include "base/mac/scoped_nsobject.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 12
13 class AsyncUninstaller; 13 class AsyncUninstaller;
14 class Browser; 14 class Browser;
15 class ExtensionAction; 15 class ExtensionAction;
16 16
17 namespace extensions { 17 namespace extensions {
18 class Extension; 18 class Extension;
19 } 19 }
20 20
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 // Initializes and returns a context menu for the given extension and browser. 59 // Initializes and returns a context menu for the given extension and browser.
60 - (id)initWithExtension:(const extensions::Extension*)extension 60 - (id)initWithExtension:(const extensions::Extension*)extension
61 browser:(Browser*)browser 61 browser:(Browser*)browser
62 extensionAction:(ExtensionAction*)action; 62 extensionAction:(ExtensionAction*)action;
63 @end 63 @end
64 64
65 typedef ExtensionActionContextMenu ExtensionActionContextMenuMac; 65 typedef ExtensionActionContextMenu ExtensionActionContextMenuMac;
66 66
67 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_ 67 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698