blob: bf3f31878cb930e1bcced489fe9beaae8421ed40 (
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
|
// 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_VIEWS_INFOBARS_EXTENSION_INFOBAR_H_
#define CHROME_BROWSER_UI_VIEWS_INFOBARS_EXTENSION_INFOBAR_H_
#pragma once
#include "base/compiler_specific.h"
#include "chrome/browser/extensions/extension_infobar_delegate.h"
#include "chrome/browser/extensions/image_loading_tracker.h"
#include "chrome/browser/ui/views/infobars/infobar_view.h"
#include "ui/views/controls/button/menu_button_listener.h"
class Browser;
namespace views {
class MenuButton;
}
class ExtensionInfoBar : public InfoBarView,
public ImageLoadingTracker::Observer,
public ExtensionInfoBarDelegate::DelegateObserver,
public views::MenuButtonListener {
public:
ExtensionInfoBar(Browser* browser,
InfoBarTabHelper* owner,
ExtensionInfoBarDelegate* delegate);
private:
virtual ~ExtensionInfoBar();
// InfoBarView:
virtual void Layout() OVERRIDE;
virtual void ViewHierarchyChanged(bool is_add,
views::View* parent,
views::View* child) OVERRIDE;
virtual int ContentMinimumWidth() const OVERRIDE;
// ImageLoadingTracker::Observer:
virtual void OnImageLoaded(const gfx::Image& image,
const std::string& extension_id,
int index) OVERRIDE;
// ExtensionInfoBarDelegate::DelegateObserver:
virtual void OnDelegateDeleted() OVERRIDE;
// views::MenuButtonListener:
virtual void OnMenuButtonClicked(views::View* source,
const gfx::Point& point) OVERRIDE;
ExtensionInfoBarDelegate* GetDelegate();
// TODO(pkasting): This shadows InfoBarView::delegate_. Get rid of this once
// InfoBars own their delegates (and thus we don't need the DelegateObserver
// functionality). For now, almost everyone should use GetDelegate() instead.
InfoBarDelegate* delegate_;
Browser* browser_;
// The dropdown menu for accessing the contextual extension actions.
views::MenuButton* menu_;
// Keeps track of images being loaded on the File thread.
ImageLoadingTracker tracker_;
DISALLOW_COPY_AND_ASSIGN(ExtensionInfoBar);
};
#endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_EXTENSION_INFOBAR_H_
|