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