diff options
| author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-09 00:55:51 +0000 |
|---|---|---|
| committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-09 00:55:51 +0000 |
| commit | d8ede05564c868d640f56c5b94a21acb080079df (patch) | |
| tree | faa4fdbdf305210330510e2c402879ea369fab0e /chrome/browser/tab_contents/tab_contents_ssl_helper.cc | |
| parent | 32183ebb716f4085762d05058bf7ae38ffde1e6a (diff) | |
| download | chromium_src-d8ede05564c868d640f56c5b94a21acb080079df.zip chromium_src-d8ede05564c868d640f56c5b94a21acb080079df.tar.gz chromium_src-d8ede05564c868d640f56c5b94a21acb080079df.tar.bz2 | |
Misc. cleanup bits I missed in my last pass.
I apparently forgot to convert an automation message declaration from int to size_t, not sure how everything compiled cleanly everywhere...
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6465003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74217 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents_ssl_helper.cc')
| -rw-r--r-- | chrome/browser/tab_contents/tab_contents_ssl_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_ssl_helper.cc b/chrome/browser/tab_contents/tab_contents_ssl_helper.cc index 8dba414..98d0ec4 100644 --- a/chrome/browser/tab_contents/tab_contents_ssl_helper.cc +++ b/chrome/browser/tab_contents/tab_contents_ssl_helper.cc @@ -105,7 +105,7 @@ bool SSLCertAddedInfoBarDelegate::Accept() { class TabContentsSSLHelper::SSLAddCertData : public NotificationObserver { public: - explicit SSLAddCertData(TabContents* tab); + explicit SSLAddCertData(TabContents* tab_contents); virtual ~SSLAddCertData(); // Displays |delegate| as an infobar in |tab_|, replacing our current one if |
