diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-22 20:07:51 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-22 20:07:51 +0000 |
commit | 1eb35c3e087bd291fc9d10a6a9e2f3172998f23d (patch) | |
tree | 576da9a1a123c934394f9f33483b1e41d1c6453e /chrome/service | |
parent | 80d1a8c2443c3dc71de5f94f4ca5e7f3a9f6b052 (diff) | |
download | chromium_src-1eb35c3e087bd291fc9d10a6a9e2f3172998f23d.zip chromium_src-1eb35c3e087bd291fc9d10a6a9e2f3172998f23d.tar.gz chromium_src-1eb35c3e087bd291fc9d10a6a9e2f3172998f23d.tar.bz2 |
[Jingle] Refactored some notifier-related structs/classes
Moved ServerInformation into its own header and added ServerList typedef.
Added notifier_options_util.{h,cc}.
BUG=None
Review URL: http://codereview.chromium.org/6708076
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79026 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/cloud_print/cloud_print_proxy_backend.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/chrome/service/cloud_print/cloud_print_proxy_backend.cc b/chrome/service/cloud_print/cloud_print_proxy_backend.cc index 4ce9aa9..b641d35 100644 --- a/chrome/service/cloud_print/cloud_print_proxy_backend.cc +++ b/chrome/service/cloud_print/cloud_print_proxy_backend.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// 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. @@ -372,12 +372,9 @@ void CloudPrintProxyBackend::Core::DoInitializeWithToken( if (result.succeeded()) { const notifier::NotifierOptions kNotifierOptions; - const bool kInvalidateXmppAuthToken = false; - const bool kAllowInsecureXmppConnection = false; talk_mediator_.reset(new notifier::TalkMediatorImpl( new notifier::MediatorThreadImpl(kNotifierOptions), - kInvalidateXmppAuthToken, - kAllowInsecureXmppConnection)); + kNotifierOptions)); notifier::Subscription subscription; subscription.channel = kCloudPrintPushNotificationsSource; subscription.channel.append("/proxy/"); |