OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InfoBarService
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/infobars/
infobar_service.h
18
class
InfoBarService
: public content::WebContentsObserver,
19
public content::WebContentsUserData<
InfoBarService
> {
57
// Returns the infobar at the given |index|. The
InfoBarService
retains
69
friend class content::WebContentsUserData<
InfoBarService
>;
71
// InfoBars associated with this
InfoBarService
. We own these pointers.
78
explicit
InfoBarService
(content::WebContents* web_contents);
79
virtual ~
InfoBarService
();
99
DISALLOW_COPY_AND_ASSIGN(
InfoBarService
);
infobar_service.cc
17
DEFINE_WEB_CONTENTS_USER_DATA_KEY(
InfoBarService
);
19
InfoBar*
InfoBarService
::AddInfoBar(scoped_ptr<InfoBar> infobar) {
38
content::Source<
InfoBarService
>(this),
43
void
InfoBarService
::RemoveInfoBar(InfoBar* infobar) {
47
InfoBar*
InfoBarService
::ReplaceInfoBar(InfoBar* old_infobar,
69
content::Source<
InfoBarService
>(this),
76
InfoBarService
::
InfoBarService
(content::WebContents* web_contents)
82
InfoBarService
::~
InfoBarService
() {
[
all
...]
Completed in 35 milliseconds