diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 17:55:31 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 17:55:31 +0000 |
commit | 8d5a7d9b4bf5e42ad889e7ea36feff67f4d78a00 (patch) | |
tree | e4331294db06c147f607583fcc21a6aa5a43ba3e /jingle | |
parent | 2d88e7d8b4c382e0ef178c52a87450c226150ef2 (diff) | |
download | chromium_src-8d5a7d9b4bf5e42ad889e7ea36feff67f4d78a00.zip chromium_src-8d5a7d9b4bf5e42ad889e7ea36feff67f4d78a00.tar.gz chromium_src-8d5a7d9b4bf5e42ad889e7ea36feff67f4d78a00.tar.bz2 |
Enforce all the source files to be encoded in UTF-8.
Many files used random encoding. All of them were in comments or unit test files
that were not compiled. In any case, not using unicode everywhere complexify the
tools so enforcing it makes presubmit checks much simpler.
R=joi@chromium.org
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10797029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147480 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r-- | jingle/notifier/listener/push_notifications_subscribe_task.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jingle/notifier/listener/push_notifications_subscribe_task.cc b/jingle/notifier/listener/push_notifications_subscribe_task.cc index 5dc7d08..40f0338 100644 --- a/jingle/notifier/listener/push_notifications_subscribe_task.cc +++ b/jingle/notifier/listener/push_notifications_subscribe_task.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -85,8 +85,8 @@ buzz::XmlElement* PushNotificationsSubscribeTask::MakeSubscriptionMessage( kPushNotificationsNamespace, "subscribe"); // Create the subscription stanza using the notifications protocol. - // <iq from={full_jid} to={bare_jid} type=’set’ id={id}> - // <subscribe xmlns=’google:push’> + // <iq from={full_jid} to={bare_jid} type="set" id={id}> + // <subscribe xmlns="google:push"> // <item channel={channel_name} from={domain_name or bare_jid}/> // <item channel={channel_name2} from={domain_name or bare_jid}/> // <item channel={channel_name3} from={domain_name or bare_jid}/> |