blob: 3965ec41266c59b2dcf8494a22073445272b819f (
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
51
52
|
// 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 "base/macros.h"
#include "chrome/browser/extensions/extension_install_prompt.h"
#import "chrome/browser/ui/cocoa/extensions/extension_install_view_controller.h"
class ExtensionInstallPromptShowParams;
@class ExtensionInstallViewController;
@class WindowedInstallController;
// Displays an app or extension install or permissions prompt as a standalone
// NSPanel.
class WindowedInstallDialogController : public ExtensionInstallViewDelegate {
public:
// Initializes the ExtensionInstallViewController and shows the window. This
// object will delete itself when the window is closed.
WindowedInstallDialogController(
ExtensionInstallPromptShowParams* show_params,
const ExtensionInstallPrompt::DoneCallback& callback,
scoped_ptr<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();
// ExtensionInstallViewDelegate:
void OnOkButtonClicked() override;
void OnCancelButtonClicked() override;
void OnStoreLinkClicked() override;
private:
FRIEND_TEST_ALL_PREFIXES(WindowedInstallDialogControllerBrowserTest,
ShowInstallDialog);
ExtensionInstallViewController* GetViewController();
ExtensionInstallPrompt::DoneCallback done_callback_;
base::scoped_nsobject<WindowedInstallController> install_controller_;
DISALLOW_COPY_AND_ASSIGN(WindowedInstallDialogController);
};
#endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_WINDOWED_INSTALL_DIALOG_CONTROLLER_H_
|