diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-15 19:54:38 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-15 19:54:38 +0000 |
commit | cd8515971986b61f70270bbcb32a998daefbc81a (patch) | |
tree | 9d037adab4c663117ed05acd722ba4c955214c66 /jingle | |
parent | 4e5a3a54806e79871eac5cfd5b1436ebdd66bd46 (diff) | |
download | chromium_src-cd8515971986b61f70270bbcb32a998daefbc81a.zip chromium_src-cd8515971986b61f70270bbcb32a998daefbc81a.tar.gz chromium_src-cd8515971986b61f70270bbcb32a998daefbc81a.tar.bz2 |
Avoid including gtest file directly, and go through base instead
We should consistently:
#include "base/gtest_prod_util.h"
which does the gtest include (from the right place, in a
second repo, hidden in our tree).
This is critical to being able to supplant the FRIEND_TEST
macro, which we're experimenting with to optimize builds.
r=brettw
TBR=other owners (this is a trivial change)
BUG=107727
Review URL: http://codereview.chromium.org/8954017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114685 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r-- | jingle/notifier/base/xmpp_connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jingle/notifier/base/xmpp_connection.h b/jingle/notifier/base/xmpp_connection.h index 9f142b1..886f58f 100644 --- a/jingle/notifier/base/xmpp_connection.h +++ b/jingle/notifier/base/xmpp_connection.h @@ -9,6 +9,7 @@ #pragma once #include "base/basictypes.h" +#include "base/gtest_prod_util.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" @@ -16,7 +17,6 @@ #include "net/url_request/url_request_context_getter.h" #include "talk/base/sigslot.h" #include "talk/xmpp/xmppengine.h" -#include "testing/gtest/include/gtest/gtest_prod.h" namespace buzz { class PreXmppAuth; |