OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
10 | 10 |
11 #include "base/memory/scoped_nsobject.h" | 11 #include "base/memory/scoped_nsobject.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 | 13 |
14 class AsyncUninstaller; | 14 class AsyncUninstaller; |
15 class DevmodeObserver; | |
16 class Extension; | 15 class Extension; |
17 class ExtensionAction; | 16 class ExtensionAction; |
18 class NotificationRegistrar; | |
19 class Profile; | 17 class Profile; |
20 | 18 |
21 namespace extension_action_context_menu { | 19 namespace extension_action_context_menu { |
22 | 20 |
23 class DevmodeObserver; | 21 class DevmodeObserver; |
24 class ProfileObserverBridge; | 22 class ProfileObserverBridge; |
25 | 23 |
26 } // namespace extension_action_context_menu | 24 } // namespace extension_action_context_menu |
27 | 25 |
28 // A context menu used by any extension UI components that require it. | 26 // A context menu used by any extension UI components that require it. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 60 |
63 // Notifies the ExtensionActionContextMenu that the profile is is being | 61 // Notifies the ExtensionActionContextMenu that the profile is is being |
64 // destroyed. | 62 // destroyed. |
65 - (void)invalidateProfile; | 63 - (void)invalidateProfile; |
66 | 64 |
67 @end | 65 @end |
68 | 66 |
69 typedef ExtensionActionContextMenu ExtensionActionContextMenuMac; | 67 typedef ExtensionActionContextMenu ExtensionActionContextMenuMac; |
70 | 68 |
71 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_ | 69 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_ |
OLD | NEW |