blob: 487f25cb51be874eec3fc7d960cb86478ef85224 (
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
|
// Copyright (c) 2012 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_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_
#define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "extensions/browser/install/extension_install_ui.h"
namespace content {
class BrowserContext;
}
class Profile;
class ExtensionInstallUIDefault : public extensions::ExtensionInstallUI {
public:
explicit ExtensionInstallUIDefault(content::BrowserContext* context);
~ExtensionInstallUIDefault() override;
// ExtensionInstallUI:
void OnInstallSuccess(const extensions::Extension* extension,
const SkBitmap* icon) override;
void OnInstallFailure(const extensions::CrxInstallError& error) override;
void SetUseAppInstalledBubble(bool use_bubble) override;
void OpenAppInstalledUI(const std::string& app_id) override;
void SetSkipPostInstallUI(bool skip_ui) override;
gfx::NativeWindow GetDefaultInstallDialogParent() override;
private:
Profile* profile_;
// Whether or not to show the default UI after completing the installation.
bool skip_post_install_ui_;
// Used to undo theme installation.
std::string previous_theme_id_;
bool previous_using_system_theme_;
// Whether to show an installed bubble on app install, or use the default
// action of opening a new tab page.
bool use_app_installed_bubble_;
DISALLOW_COPY_AND_ASSIGN(ExtensionInstallUIDefault);
};
#endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_
|