diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 21:49:03 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 21:49:03 +0000 |
commit | 8822f38cd5d5006033003e5197a56bed2cc33fea (patch) | |
tree | 2d239e6b8b1557b1e90c5747b63c56238b2fb846 /net/base/cookie_monster.h | |
parent | c9b9f10acf2d9e8290739b10bfaf18da4ea9656c (diff) | |
download | chromium_src-8822f38cd5d5006033003e5197a56bed2cc33fea.zip chromium_src-8822f38cd5d5006033003e5197a56bed2cc33fea.tar.gz chromium_src-8822f38cd5d5006033003e5197a56bed2cc33fea.tar.bz2 |
More FRIEND_TEST_ALL_PREFIXES.
TEST=none
BUG=44549
Review URL: http://codereview.chromium.org/3053024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54388 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/cookie_monster.h')
-rw-r--r-- | net/base/cookie_monster.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h index ab479c4..8172857 100644 --- a/net/base/cookie_monster.h +++ b/net/base/cookie_monster.h @@ -14,13 +14,13 @@ #include <vector> #include "base/basictypes.h" +#include "base/gtest_prod_util.h" #include "base/histogram.h" #include "base/lock.h" #include "base/ref_counted.h" #include "base/scoped_ptr.h" #include "base/time.h" #include "net/base/cookie_store.h" -#include "testing/gtest/include/gtest/gtest_prod.h" class GURL; @@ -158,8 +158,10 @@ class CookieMonster : public CookieStore { // Testing support. friend class CookieMonsterTest; - FRIEND_TEST(CookieMonsterTest, TestCookieDeleteAllCreatedAfterTimestamp); - FRIEND_TEST(CookieMonsterTest, TestCookieDeleteAllCreatedBetweenTimestamps); + FRIEND_TEST_ALL_PREFIXES(CookieMonsterTest, + TestCookieDeleteAllCreatedAfterTimestamp); + FRIEND_TEST_ALL_PREFIXES(CookieMonsterTest, + TestCookieDeleteAllCreatedBetweenTimestamps); bool SetCookieWithCreationTime(const GURL& url, const std::string& cookie_line, const base::Time& creation_time); |