diff options
Diffstat (limited to 'jingle/notifier/base/notifier_options.cc')
-rw-r--r-- | jingle/notifier/base/notifier_options.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/jingle/notifier/base/notifier_options.cc b/jingle/notifier/base/notifier_options.cc new file mode 100644 index 0000000..6191af1 --- /dev/null +++ b/jingle/notifier/base/notifier_options.cc @@ -0,0 +1,19 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "jingle/notifier/base/notifier_options.h" + +// TODO(akalin): Fix the cross-directory dependency. +#include "jingle/notifier/communicator/gaia_token_pre_xmpp_auth.h" + +namespace notifier { + +NotifierOptions::NotifierOptions() + : try_ssltcp_first(false), + allow_insecure_connection(false), + invalidate_xmpp_login(false), + notification_method(kDefaultNotificationMethod), + auth_mechanism(GaiaTokenPreXmppAuth::kDefaultAuthMechanism) {} + +} // namespace notifier |