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

Side by Side Diff: jingle/notifier/base/notifier_options.cc

Issue 6649006: Added support for other authentication mechanisms in jingle. This will allow ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Review comments addressed Created 9 years, 9 months 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "jingle/notifier/base/notifier_options.h"
6
7 // TODO(akalin): Fix the cross-directory dependency.
8 #include "jingle/notifier/communicator/gaia_token_pre_xmpp_auth.h"
9
10 namespace notifier {
11
12 NotifierOptions::NotifierOptions()
13 : try_ssltcp_first(false),
14 allow_insecure_connection(false),
15 invalidate_xmpp_login(false),
16 notification_method(kDefaultNotificationMethod),
17 auth_mechanism(GaiaTokenPreXmppAuth::kDefaultAuthMechanism) {}
18
19 } // namespace notifier
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698