blob: 31c36cfb5a2d2ca69924ec1a60a93172aa8734e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// 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_ACTION_CONTEXT_MENU_H_
#define CHROME_BROWSER_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_
#include "base/ref_counted.h"
#import <Cocoa/Cocoa.h>
class AsyncUninstaller;
class Extension;
class Profile;
// A context menu used by the Browser and Page Action components that appears
// if a user right-clicks the view of the given extension.
@interface ExtensionActionContextMenu : NSMenu {
// The extension that this menu belongs to. Weak.
Extension* extension_;
// The browser profile of the window that contains this extension. Weak.
Profile* profile_;
// Used to load the extension icon asynchronously on the I/O thread then show
// the uninstall confirmation dialog.
scoped_refptr<AsyncUninstaller> uninstaller_;
}
// Initializes and returns a context menu for the given extension and profile.
- (id)initWithExtension:(Extension*)extension profile:(Profile*)profile;
@end
typedef ExtensionActionContextMenu ExtensionActionContextMenuMac;
#endif // CHROME_BROWSER_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_
|