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

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

Issue 8536010: Cleanup: Remove unneeded forward declarations from chrome/browser/ui/gtk and chrome/browser/ui/co... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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) 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; 15 class DevmodeObserver;
Mark Mentovai 2011/11/11 17:19:35 This is in namespace extension_action_context_menu
Lei Zhang 2011/11/11 21:05:20 Removed. And you can see my little tool is not ful
16 class Extension; 16 class Extension;
17 class ExtensionAction; 17 class ExtensionAction;
18 class NotificationRegistrar;
19 class Profile; 18 class Profile;
20 19
21 namespace extension_action_context_menu { 20 namespace extension_action_context_menu {
22 21
23 class DevmodeObserver; 22 class DevmodeObserver;
24 class ProfileObserverBridge; 23 class ProfileObserverBridge;
25 24
26 } // namespace extension_action_context_menu 25 } // namespace extension_action_context_menu
27 26
28 // A context menu used by any extension UI components that require it. 27 // A context menu used by any extension UI components that require it.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 61
63 // Notifies the ExtensionActionContextMenu that the profile is is being 62 // Notifies the ExtensionActionContextMenu that the profile is is being
64 // destroyed. 63 // destroyed.
65 - (void)invalidateProfile; 64 - (void)invalidateProfile;
66 65
67 @end 66 @end
68 67
69 typedef ExtensionActionContextMenu ExtensionActionContextMenuMac; 68 typedef ExtensionActionContextMenu ExtensionActionContextMenuMac;
70 69
71 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_ 70 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698