diff options
Diffstat (limited to 'chrome/browser/ssl_manager.cc')
-rw-r--r-- | chrome/browser/ssl_manager.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/browser/ssl_manager.cc b/chrome/browser/ssl_manager.cc index 46a5546..1881fdf 100644 --- a/chrome/browser/ssl_manager.cc +++ b/chrome/browser/ssl_manager.cc @@ -43,10 +43,10 @@ class SSLInfoBarDelegate : public ConfirmInfoBarDelegate { const std::wstring message, const std::wstring& button_label, Task* task) - : message_(message), + : ConfirmInfoBarDelegate(contents), + message_(message), button_label_(button_label), - task_(task), - ConfirmInfoBarDelegate(contents) { + task_(task) { } virtual ~SSLInfoBarDelegate() {} @@ -74,7 +74,6 @@ class SSLInfoBarDelegate : public ConfirmInfoBarDelegate { } return true; } - private: // Labels for the InfoBar's message and button. |