Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: jingle/notifier/base/xmpp_connection.h

Issue 5958001: The MediatorThread worker thread needs to have a CertVerifier... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix typos in xmpp_connection_unittest.cc Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: jingle/notifier/base/xmpp_connection.h
===================================================================
--- jingle/notifier/base/xmpp_connection.h (revision 69414)
+++ jingle/notifier/base/xmpp_connection.h (working copy)
@@ -22,6 +22,10 @@
class XmppClientSettings;
} // namespace
+namespace net {
+class CertVerifier;
+} // namespace
+
namespace talk_base {
class Task;
} // namespace
@@ -59,11 +63,13 @@
const buzz::XmlElement* stream_error) = 0;
};
+ // Does not take ownership of |cert_verifier|, which may not be NULL.
// Does not take ownership of |delegate|, which may not be NULL.
// Takes ownership of |pre_xmpp_auth|, which may be NULL.
//
// TODO(akalin): Avoid the need for |pre_xmpp_auth|.
XmppConnection(const buzz::XmppClientSettings& xmpp_client_settings,
+ net::CertVerifier* cert_verifier,
Delegate* delegate, buzz::PreXmppAuth* pre_xmpp_auth);
// Invalidates any weak pointers passed to the delegate by
Property changes on: jingle\notifier\base\xmpp_connection.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698