blob: 1884fe35d258034fbf06c53088faeb2806c3e019 (
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
53
54
55
56
57
58
|
// 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_GTK_EXTENSIONS_BUNDLE_INSTALLED_BUBBLE_GTK_H_
#define CHROME_BROWSER_UI_GTK_EXTENSIONS_BUNDLE_INSTALLED_BUBBLE_GTK_H_
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/extensions/bundle_installer.h"
#include "chrome/browser/ui/gtk/bubble/bubble_gtk.h"
#include "chrome/browser/ui/gtk/custom_button.h"
class Browser;
// The GTK implementation of the bundle installed bubble. The bubble reports
// which extensions and apps installed or failed when the bundle install
// completes.
class BundleInstalledBubbleGtk
: public BubbleDelegateGtk,
public base::RefCounted<BundleInstalledBubbleGtk> {
public:
// Displays an installed bubble in the |browser| for the |bundle|.
BundleInstalledBubbleGtk(const extensions::BundleInstaller* bundle,
Browser* browser);
private:
friend class base::RefCounted<BundleInstalledBubbleGtk>;
virtual ~BundleInstalledBubbleGtk();
// Assembles the content area of the bubble.
void ShowInternal(const extensions::BundleInstaller* bundle);
// The bubble lists the items that installed successfully and those that
// failed. This assembles the lists for items in the given |state|.
void InsertExtensionList(GtkWidget* parent,
const extensions::BundleInstaller* bundle,
extensions::BundleInstaller::Item::State state);
// BubbleDelegateGtk, called when the bubble is about to close.
virtual void BubbleClosing(BubbleGtk* bubble, bool closed_by_escape) OVERRIDE;
// Closes the bubble.
void Close();
// Called when the user clicks the bubble's close button.
static void OnButtonClick(GtkWidget* button,
BundleInstalledBubbleGtk* bubble);
Browser* browser_;
scoped_ptr<CustomDrawButton> close_button_;
BubbleGtk* bubble_;
DISALLOW_COPY_AND_ASSIGN(BundleInstalledBubbleGtk);
};
#endif // CHROME_BROWSER_UI_GTK_EXTENSIONS_BUNDLE_INSTALLED_BUBBLE_GTK_H_
|