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

Side by Side Diff: jingle/notifier/base/xmpp_connection.h

Issue 8954017: Avoid including gtest file directly, and go through base instead (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « chrome_frame/urlmon_url_request_private.h ('k') | net/disk_cache/mem_entry_impl.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) 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 // A class that manages a connection to an XMPP server. 5 // A class that manages a connection to an XMPP server.
6 6
7 #ifndef JINGLE_NOTIFIER_BASE_XMPP_CONNECTION_H_ 7 #ifndef JINGLE_NOTIFIER_BASE_XMPP_CONNECTION_H_
8 #define JINGLE_NOTIFIER_BASE_XMPP_CONNECTION_H_ 8 #define JINGLE_NOTIFIER_BASE_XMPP_CONNECTION_H_
9 #pragma once 9 #pragma once
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/gtest_prod_util.h"
12 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
15 #include "base/threading/non_thread_safe.h" 16 #include "base/threading/non_thread_safe.h"
16 #include "net/url_request/url_request_context_getter.h" 17 #include "net/url_request/url_request_context_getter.h"
17 #include "talk/base/sigslot.h" 18 #include "talk/base/sigslot.h"
18 #include "talk/xmpp/xmppengine.h" 19 #include "talk/xmpp/xmppengine.h"
19 #include "testing/gtest/include/gtest/gtest_prod.h"
20 20
21 namespace buzz { 21 namespace buzz {
22 class PreXmppAuth; 22 class PreXmppAuth;
23 class XmlElement; 23 class XmlElement;
24 class XmppClientSettings; 24 class XmppClientSettings;
25 class XmppTaskParentInterface; 25 class XmppTaskParentInterface;
26 } // namespace 26 } // namespace
27 27
28 namespace notifier { 28 namespace notifier {
29 29
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 FRIEND_TEST(XmppConnectionTest, MultipleConnect); 92 FRIEND_TEST(XmppConnectionTest, MultipleConnect);
93 FRIEND_TEST(XmppConnectionTest, ConnectThenError); 93 FRIEND_TEST(XmppConnectionTest, ConnectThenError);
94 FRIEND_TEST(XmppConnectionTest, TasksDontRunAfterXmppConnectionDestructor); 94 FRIEND_TEST(XmppConnectionTest, TasksDontRunAfterXmppConnectionDestructor);
95 95
96 DISALLOW_COPY_AND_ASSIGN(XmppConnection); 96 DISALLOW_COPY_AND_ASSIGN(XmppConnection);
97 }; 97 };
98 98
99 } // namespace notifier 99 } // namespace notifier
100 100
101 #endif // JINGLE_NOTIFIER_BASE_XMPP_CONNECTION_H_ 101 #endif // JINGLE_NOTIFIER_BASE_XMPP_CONNECTION_H_
OLDNEW
« no previous file with comments | « chrome_frame/urlmon_url_request_private.h ('k') | net/disk_cache/mem_entry_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698