blob: dbb1d4c17b30ecc87f775824fcdf2ada5409ee67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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"
#include "jingle/notifier/base/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) {}
NotifierOptions::~NotifierOptions() { }
} // namespace notifier
|