diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-22 00:40:20 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-22 00:40:20 +0000 |
commit | 794c3bbd6ccf58b41be676607555b02cfacc71e3 (patch) | |
tree | 8e2d6d434b84be183296fd2aca27c35df753ee6b /chrome/browser/tab_contents.h | |
parent | ea9480ce469eb1db023c99b8af8e58f3d113b8d2 (diff) | |
download | chromium_src-794c3bbd6ccf58b41be676607555b02cfacc71e3.zip chromium_src-794c3bbd6ccf58b41be676607555b02cfacc71e3.tar.gz chromium_src-794c3bbd6ccf58b41be676607555b02cfacc71e3.tar.bz2 |
This change makes the following infobars use the new system:
- save password
Review URL: http://codereview.chromium.org/11559
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5882 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents.h b/chrome/browser/tab_contents.h index 6893ee1..2f78a79 100644 --- a/chrome/browser/tab_contents.h +++ b/chrome/browser/tab_contents.h @@ -393,8 +393,8 @@ class TabContents : public PageNavigator, void RemoveInfoBar(InfoBarDelegate* delegate); // Enumeration and access functions. - size_t infobar_delegate_count() const { return infobar_delegates_.size(); } - InfoBarDelegate* GetInfoBarDelegateAt(size_t index) { + int infobar_delegate_count() const { return infobar_delegates_.size(); } + InfoBarDelegate* GetInfoBarDelegateAt(int index) { return infobar_delegates_.at(index); } |