OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InfoBarContainer
(Results
1 - 6
of
6
) sorted by null
/external/chromium/chrome/browser/ui/views/infobars/
infobar_container.cc
14
InfoBarContainer
::Delegate::~Delegate() {
17
InfoBarContainer
::
InfoBarContainer
(Delegate* delegate)
23
InfoBarContainer
::~
InfoBarContainer
() {
28
void
InfoBarContainer
::ChangeTabContents(TabContents* contents) {
64
int
InfoBarContainer
::GetVerticalOverlap(int* total_height) {
82
void
InfoBarContainer
::SetMaxTopArrowHeight(int height) {
91
void
InfoBarContainer
::OnInfoBarStateChanged(bool is_animating) {
96
void
InfoBarContainer
::RemoveDelegate(InfoBarDelegate* delegate)
[
all
...]
infobar_container.h
20
//
InfoBarContainer
is a cross-platform base class to handle the visibility-
22
//
InfoBarContainer
is responsible for telling particular InfoBars that they
27
class
InfoBarContainer
: public NotificationObserver {
46
explicit
InfoBarContainer
(Delegate* delegate);
47
virtual ~
InfoBarContainer
();
55
// |total_height| is non-NULL, set it to the height of the
InfoBarContainer
132
DISALLOW_COPY_AND_ASSIGN(
InfoBarContainer
);
/external/chromium_org/chrome/browser/infobars/
infobar_container.cc
20
InfoBarContainer
::Delegate::~Delegate() {
23
InfoBarContainer
::
InfoBarContainer
(Delegate* delegate)
29
InfoBarContainer
::~
InfoBarContainer
() {
34
void
InfoBarContainer
::ChangeInfoBarService(InfoBarService* infobar_service) {
58
int
InfoBarContainer
::GetVerticalOverlap(int* total_height) {
76
void
InfoBarContainer
::SetMaxTopArrowHeight(int height) {
85
void
InfoBarContainer
::OnInfoBarStateChanged(bool is_animating) {
92
void
InfoBarContainer
::RemoveInfoBar(InfoBar* infobar)
[
all
...]
infobar_container.h
19
//
InfoBarContainer
is a cross-platform base class to handle the visibility-
21
//
InfoBarContainer
is responsible for telling particular InfoBars that they
26
class
InfoBarContainer
: public content::NotificationObserver {
45
explicit
InfoBarContainer
(Delegate* delegate);
46
virtual ~
InfoBarContainer
();
55
// |total_height| is non-NULL, set it to the height of the
InfoBarContainer
134
DISALLOW_COPY_AND_ASSIGN(
InfoBarContainer
);
/external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_controller.h
12
@protocol
InfoBarContainer
;
22
id<
InfoBarContainer
> containerController_; // weak, owns us
84
@property(nonatomic, assign) id<
InfoBarContainer
> containerController;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBarContainer.java
36
public class
InfoBarContainer
extends LinearLayout {
37
private static final String TAG = "
InfoBarContainer
";
69
// Native
InfoBarContainer
pointer which will be set by nativeInit()
98
public
InfoBarContainer
(Activity activity, AutoLoginProcessor autoLoginProcessor,
117
// Chromium's
InfoBarContainer
may add an InfoBar immediately during this initialization
118
// call, so make sure everything in the
InfoBarContainer
is completely ready beforehand.
416
* Dismisses all {@link AutoLoginInfoBar}s in this {@link
InfoBarContainer
} that are for
498
* Searches a given view's child views for an instance of {@link
InfoBarContainer
}.
501
* @return {@link
InfoBarContainer
} instance if it's one of the child views;
504
public static
InfoBarContainer
childViewOf(ViewGroup parentView)
[
all
...]
Completed in 93 milliseconds