OLD | NEW |
(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 |
OLD | NEW |