diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-30 21:59:58 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-30 21:59:58 +0000 |
commit | 8a27abf866ca54fe5a1aa7427094cdd79e0241ec (patch) | |
tree | fb13223c6131a1cb7d550cea3c771988dd6dff9b /chrome/browser/chrome_content_browser_client.h | |
parent | 5c12f4a7d56afa3a3cd2d2a83dbfd65e321c71d8 (diff) | |
download | chromium_src-8a27abf866ca54fe5a1aa7427094cdd79e0241ec.zip chromium_src-8a27abf866ca54fe5a1aa7427094cdd79e0241ec.tar.gz chromium_src-8a27abf866ca54fe5a1aa7427094cdd79e0241ec.tar.bz2 |
Use new callbacks for SSL UI.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8080010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103555 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_content_browser_client.h')
-rw-r--r-- | chrome/browser/chrome_content_browser_client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h index 939fdd9..1a9a97f 100644 --- a/chrome/browser/chrome_content_browser_client.h +++ b/chrome/browser/chrome_content_browser_client.h @@ -65,7 +65,8 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient { virtual void AllowCertificateError( SSLCertErrorHandler* handler, bool overridable, - Callback2<SSLCertErrorHandler*, bool>::Type* callback) OVERRIDE; + const base::Callback<void(SSLCertErrorHandler*, bool)>& callback) + OVERRIDE; virtual void SelectClientCertificate( int render_process_id, int render_view_id, |