diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-16 23:18:46 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-16 23:18:46 +0000 |
commit | f33811ba10a82b0211e5da3abbcd2bd64e3fe6fc (patch) | |
tree | a62acd3a45df426f5f2b1855808d6f43be5586c1 /jingle | |
parent | df17beda0e565c0f72954524d87b85f216e4358c (diff) | |
download | chromium_src-f33811ba10a82b0211e5da3abbcd2bd64e3fe6fc.zip chromium_src-f33811ba10a82b0211e5da3abbcd2bd64e3fe6fc.tar.gz chromium_src-f33811ba10a82b0211e5da3abbcd2bd64e3fe6fc.tar.bz2 |
GTTF: some more FRIEND_TEST_ALL_PREFIXES
TEST=none
BUG=44549
Review URL: http://codereview.chromium.org/3161021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56253 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r-- | jingle/notifier/listener/send_update_task.h | 4 | ||||
-rw-r--r-- | jingle/notifier/listener/subscribe_task.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/jingle/notifier/listener/send_update_task.h b/jingle/notifier/listener/send_update_task.h index 03285dd..ea71857 100644 --- a/jingle/notifier/listener/send_update_task.h +++ b/jingle/notifier/listener/send_update_task.h @@ -9,10 +9,10 @@ #include <string> +#include "base/gtest_prod_util.h" #include "jingle/notifier/listener/notification_defines.h" #include "talk/xmllite/xmlelement.h" #include "talk/xmpp/xmpptask.h" -#include "testing/gtest/include/gtest/gtest_prod.h" namespace notifier { @@ -37,7 +37,7 @@ class SendUpdateTask : public buzz::XmppTask { OutgoingNotificationData notification_data_; - FRIEND_TEST(SendUpdateTaskTest, MakeUpdateMessage); + FRIEND_TEST_ALL_PREFIXES(SendUpdateTaskTest, MakeUpdateMessage); DISALLOW_COPY_AND_ASSIGN(SendUpdateTask); }; diff --git a/jingle/notifier/listener/subscribe_task.h b/jingle/notifier/listener/subscribe_task.h index 5b344d9..f2888d7 100644 --- a/jingle/notifier/listener/subscribe_task.h +++ b/jingle/notifier/listener/subscribe_task.h @@ -12,9 +12,9 @@ #include <string> #include <vector> +#include "base/gtest_prod_util.h" #include "talk/xmllite/xmlelement.h" #include "talk/xmpp/xmpptask.h" -#include "testing/gtest/include/gtest/gtest_prod.h" namespace notifier { // TODO(akalin): Remove NOTIFICATION_LEGACY and remove/refactor relevant code @@ -41,7 +41,7 @@ class SubscribeTask : public buzz::XmppTask { std::vector<std::string> subscribed_services_list_; - FRIEND_TEST(SubscribeTaskTest, MakeSubscriptionMessage); + FRIEND_TEST_ALL_PREFIXES(SubscribeTaskTest, MakeSubscriptionMessage); DISALLOW_COPY_AND_ASSIGN(SubscribeTask); }; |