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

Side by Side Diff: chrome/browser/extensions/extension_message_bubble_controller.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_CONTROLLER_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_CONTROLLER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_CONTROLLER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/scoped_observer.h" 13 #include "base/scoped_observer.h"
14 #include "chrome/browser/ui/browser_list_observer.h" 14 #include "chrome/browser/ui/browser_list_observer.h"
15 #include "extensions/browser/browser_context_keyed_api_factory.h" 15 #include "extensions/browser/browser_context_keyed_api_factory.h"
16 #include "extensions/common/extension.h" 16 #include "extensions/common/extension.h"
17 17
18 class Browser; 18 class Browser;
19 class BrowserList; 19 class BrowserList;
20 class ExtensionService; 20 class ExtensionService;
21 class ToolbarActionsModel; 21 class ToolbarActionsModel;
22 class Profile; 22 class Profile;
23 23
24 namespace extensions { 24 namespace extensions {
25 25
26 class ExtensionPrefs;
27 class ExtensionRegistry; 26 class ExtensionRegistry;
28 27
29 class ExtensionMessageBubbleController : public chrome::BrowserListObserver { 28 class ExtensionMessageBubbleController : public chrome::BrowserListObserver {
30 public: 29 public:
31 // UMA histogram constants. 30 // UMA histogram constants.
32 enum BubbleAction { 31 enum BubbleAction {
33 ACTION_LEARN_MORE = 0, 32 ACTION_LEARN_MORE = 0,
34 ACTION_EXECUTE, 33 ACTION_EXECUTE,
35 ACTION_DISMISS_USER_ACTION, 34 ACTION_DISMISS_USER_ACTION,
36 ACTION_DISMISS_DEACTIVATION, 35 ACTION_DISMISS_DEACTIVATION,
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 bool is_active_bubble_; 214 bool is_active_bubble_;
216 215
217 ScopedObserver<BrowserList, BrowserListObserver> browser_list_observer_; 216 ScopedObserver<BrowserList, BrowserListObserver> browser_list_observer_;
218 217
219 DISALLOW_COPY_AND_ASSIGN(ExtensionMessageBubbleController); 218 DISALLOW_COPY_AND_ASSIGN(ExtensionMessageBubbleController);
220 }; 219 };
221 220
222 } // namespace extensions 221 } // namespace extensions
223 222
224 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_CONTROLLER_H_ 223 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_gcm_app_handler.h ('k') | chrome/browser/extensions/extension_prefs_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698