Index: chrome/browser/app_controller_mac.h |
diff --git a/chrome/browser/app_controller_mac.h b/chrome/browser/app_controller_mac.h |
index bd6e7a556d326db7e84ab7a881f7ecadf1b24147..bd9039b4d3ce6486d6febc29912c4da8626700e0 100644 |
--- a/chrome/browser/app_controller_mac.h |
+++ b/chrome/browser/app_controller_mac.h |
@@ -28,6 +28,7 @@ class Profile; |
namespace ui { |
class WorkAreaWatcherObserver; |
} |
+class QuitWithAppsController; |
tapted
2014/04/01 08:09:45
nit: move to before line 28? I think there should
jackhou1
2014/04/02 06:38:38
Done.
|
// The application controller object, created by loading the MainMenu nib. |
// This handles things like responding to menus when there are no windows |
@@ -87,6 +88,9 @@ class WorkAreaWatcherObserver; |
scoped_ptr<PrefChangeRegistrar> profilePrefRegistrar_; |
PrefChangeRegistrar localPrefRegistrar_; |
+ |
+ // Displays a notification when quitting while apps are running. |
+ scoped_refptr<QuitWithAppsController> quitWithAppsController_; |
} |
@property(readonly, nonatomic) BOOL startupComplete; |