blob: 7f46e85081d63bb9a707f24cc4ff286c88a268c8 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
// Copyright (c) 2011 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_EXTENSIONS_EXTENSION_INFOBAR_DELEGATE_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_INFOBAR_DELEGATE_H_
#pragma once
#include "chrome/browser/tab_contents/confirm_infobar_delegate.h"
class Browser;
class Extension;
class ExtensionHost;
class TabContentsWrapper;
// The InfobarDelegate for creating and managing state for the ExtensionInfobar
// plus monitor when the extension goes away.
class ExtensionInfoBarDelegate : public InfoBarDelegate,
public NotificationObserver {
public:
// The observer for when the delegate dies.
class DelegateObserver {
public:
virtual void OnDelegateDeleted() = 0;
protected:
virtual ~DelegateObserver() {}
};
ExtensionInfoBarDelegate(Browser* browser,
TabContents* contents,
const Extension* extension,
const GURL& url);
const Extension* extension() { return extension_; }
ExtensionHost* extension_host() { return extension_host_.get(); }
void set_observer(DelegateObserver* observer) { observer_ = observer; }
bool closing() const { return closing_; }
private:
virtual ~ExtensionInfoBarDelegate();
// InfoBarDelegate:
virtual InfoBar* CreateInfoBar(TabContentsWrapper* owner) OVERRIDE;
virtual bool EqualsDelegate(InfoBarDelegate* delegate) const OVERRIDE;
virtual void InfoBarDismissed() OVERRIDE;
virtual Type GetInfoBarType() const OVERRIDE;
virtual ExtensionInfoBarDelegate* AsExtensionInfoBarDelegate() OVERRIDE;
// NotificationObserver:
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) OVERRIDE;
// The extension host we are showing the InfoBar for. The delegate needs to
// own this since the InfoBar gets deleted and recreated when you switch tabs
// and come back (and we don't want the user's interaction with the InfoBar to
// get lost at that point).
scoped_ptr<ExtensionHost> extension_host_;
// The observer monitoring when the delegate dies.
DelegateObserver* observer_;
const Extension* extension_;
TabContents* tab_contents_;
NotificationRegistrar registrar_;
// Whether we are currently animating to close. This is used to ignore
// ExtensionView::PreferredSizeChanged notifications.
bool closing_;
DISALLOW_COPY_AND_ASSIGN(ExtensionInfoBarDelegate);
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INFOBAR_DELEGATE_H_
|