OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER_H_ |
| 7 |
| 8 #import <Cocoa/Cocoa.h> |
| 9 |
| 10 #include "base/gtest_prod_util.h" |
| 11 #include "base/mac/scoped_nsobject.h" |
| 12 #include "chrome/browser/extensions/extension_install_prompt.h" |
| 13 |
| 14 @class ExtensionInstallViewController; |
| 15 @class WindowedInstallController; |
| 16 |
| 17 // Displays an app or extension install or permissions prompt as a standalone |
| 18 // NSPanel. |
| 19 class WindowedInstallDialogController |
| 20 : public ExtensionInstallPrompt::Delegate { |
| 21 public: |
| 22 // Initializes the ExtensionInstallViewController and shows the window. This |
| 23 // object will delete itself when the window is closed. |
| 24 WindowedInstallDialogController( |
| 25 const ExtensionInstallPrompt::ShowParams& show_params, |
| 26 ExtensionInstallPrompt::Delegate* delegate, |
| 27 const ExtensionInstallPrompt::Prompt& prompt); |
| 28 virtual ~WindowedInstallDialogController(); |
| 29 |
| 30 // Invoked by the -[NSWindow windowWillClose:] notification after a dialog |
| 31 // choice is invoked. Releases owned resources, then deletes |this|. |
| 32 void OnWindowClosing(); |
| 33 |
| 34 // ExtensionInstallPrompt::Delegate: |
| 35 virtual void InstallUIProceed() OVERRIDE; |
| 36 virtual void InstallUIAbort(bool user_initiated) OVERRIDE; |
| 37 |
| 38 private: |
| 39 FRIEND_TEST_ALL_PREFIXES(WindowedInstallDialogControllerBrowserTest, |
| 40 ShowInstallDialog); |
| 41 ExtensionInstallViewController* GetViewController(); |
| 42 |
| 43 ExtensionInstallPrompt::Delegate* delegate_; |
| 44 base::scoped_nsobject<WindowedInstallController> install_controller_; |
| 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(WindowedInstallDialogController); |
| 47 }; |
| 48 |
| 49 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER
_H_ |
OLD | NEW |