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

Side by Side Diff: jingle/notifier/base/weak_xmpp_client.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
« no previous file with comments | « jingle/notifier/base/notifier_options_util.cc ('k') | jingle/notifier/base/xmpp_connection.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // A thin wrapper around buzz::XmppClient that exposes weak pointers 5 // A thin wrapper around buzz::XmppClient that exposes weak pointers
6 // so that users know when the buzz::XmppClient becomes invalid to use 6 // so that users know when the buzz::XmppClient becomes invalid to use
7 // (not necessarily only at destruction time). 7 // (not necessarily only at destruction time).
8 8
9 #ifndef JINGLE_NOTIFIER_BASE_WEAK_XMPP_CLIENT_H_ 9 #ifndef JINGLE_NOTIFIER_BASE_WEAK_XMPP_CLIENT_H_
10 #define JINGLE_NOTIFIER_BASE_WEAK_XMPP_CLIENT_H_ 10 #define JINGLE_NOTIFIER_BASE_WEAK_XMPP_CLIENT_H_
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "base/threading/non_thread_safe.h" 15 #include "base/threading/non_thread_safe.h"
16 #include "webrtc/libjingle/xmpp/xmppclient.h" 16 #include "third_party/libjingle_xmpp/xmpp/xmppclient.h"
17 17
18 namespace rtc { 18 namespace rtc {
19 class TaskParent; 19 class TaskParent;
20 } // namespace 20 } // namespace
21 21
22 namespace notifier { 22 namespace notifier {
23 23
24 // buzz::XmppClient's destructor isn't marked virtual, but it inherits 24 // buzz::XmppClient's destructor isn't marked virtual, but it inherits
25 // from rtc::Task, whose destructor *is* marked virtual, so we 25 // from rtc::Task, whose destructor *is* marked virtual, so we
26 // can safely inherit from it. 26 // can safely inherit from it.
(...skipping 20 matching lines...) Expand all
47 // SupportsWeakPtr since we want to invalidate in other places 47 // SupportsWeakPtr since we want to invalidate in other places
48 // besides the destructor. 48 // besides the destructor.
49 base::WeakPtrFactory<WeakXmppClient> weak_ptr_factory_; 49 base::WeakPtrFactory<WeakXmppClient> weak_ptr_factory_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(WeakXmppClient); 51 DISALLOW_COPY_AND_ASSIGN(WeakXmppClient);
52 }; 52 };
53 53
54 } // namespace notifier 54 } // namespace notifier
55 55
56 #endif // JINGLE_NOTIFIER_BASE_WEAK_XMPP_CLIENT_H_ 56 #endif // JINGLE_NOTIFIER_BASE_WEAK_XMPP_CLIENT_H_
OLDNEW
« no previous file with comments | « jingle/notifier/base/notifier_options_util.cc ('k') | jingle/notifier/base/xmpp_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698