Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Side by Side Diff: jingle/notifier/listener/push_notifications_send_update_task.h

Issue 2443903004: Add xmllite and xmpp sources to third_party/ (Closed)
Patch Set: Explicitly use webrtc_overrides/webrtc/base/logging.h Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Methods for sending the update stanza to notify peers via xmpp. 5 // Methods for sending the update stanza to notify peers via xmpp.
6 6
7 #ifndef JINGLE_NOTIFIER_LISTENER_PUSH_NOTIFICATIONS_SEND_UPDATE_TASK_H_ 7 #ifndef JINGLE_NOTIFIER_LISTENER_PUSH_NOTIFICATIONS_SEND_UPDATE_TASK_H_
8 #define JINGLE_NOTIFIER_LISTENER_PUSH_NOTIFICATIONS_SEND_UPDATE_TASK_H_ 8 #define JINGLE_NOTIFIER_LISTENER_PUSH_NOTIFICATIONS_SEND_UPDATE_TASK_H_
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/gtest_prod_util.h" 11 #include "base/gtest_prod_util.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "jingle/notifier/listener/notification_defines.h" 13 #include "jingle/notifier/listener/notification_defines.h"
14 #include "webrtc/libjingle/xmpp/xmpptask.h" 14 #include "third_party/libjingle_xmpp/xmpp/xmpptask.h"
15 15
16 namespace buzz { 16 namespace buzz {
17 class Jid; 17 class Jid;
18 class XmlElement; 18 class XmlElement;
19 } // namespace 19 } // namespace
20 20
21 namespace notifier { 21 namespace notifier {
22 22
23 class PushNotificationsSendUpdateTask : public buzz::XmppTask { 23 class PushNotificationsSendUpdateTask : public buzz::XmppTask {
24 public: 24 public:
(...skipping 13 matching lines...) Expand all
38 38
39 FRIEND_TEST_ALL_PREFIXES(PushNotificationsSendUpdateTaskTest, 39 FRIEND_TEST_ALL_PREFIXES(PushNotificationsSendUpdateTaskTest,
40 MakeUpdateMessage); 40 MakeUpdateMessage);
41 41
42 DISALLOW_COPY_AND_ASSIGN(PushNotificationsSendUpdateTask); 42 DISALLOW_COPY_AND_ASSIGN(PushNotificationsSendUpdateTask);
43 }; 43 };
44 44
45 } // namespace notifier 45 } // namespace notifier
46 46
47 #endif // JINGLE_NOTIFIER_LISTENER_PUSH_NOTIFICATIONS_SEND_UPDATE_TASK_H_ 47 #endif // JINGLE_NOTIFIER_LISTENER_PUSH_NOTIFICATIONS_SEND_UPDATE_TASK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698