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

Unified Diff: net/base/cookie_monster_unittest.cc

Issue 8468010: Creation of cookie_utils. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Review comments Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: net/base/cookie_monster_unittest.cc
diff --git a/net/base/cookie_monster_unittest.cc b/net/base/cookie_monster_unittest.cc
index d95b4480b6d5e3d1dd81a9cee2b302ccac730f9c..5e2db5bb1b986c2d8ac1b63de7a3b2e8414bb65a 100644
--- a/net/base/cookie_monster_unittest.cc
+++ b/net/base/cookie_monster_unittest.cc
@@ -21,6 +21,7 @@
#include "googleurl/src/gurl.h"
#include "net/base/cookie_monster.h"
#include "net/base/cookie_monster_store_test.h" // For CookieStore mock
+#include "net/base/cookie_util.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -1852,7 +1853,7 @@ TEST_F(CookieMonsterTest, TestDomainIsHostOnly) {
for (size_t i = 0; i < arraysize(tests); ++i) {
EXPECT_EQ(tests[i].is_host_only,
- CookieMonster::DomainIsHostOnly(tests[i].str));
+ cookie_util::DomainIsHostOnly(tests[i].str));
}
}
« no previous file with comments | « net/base/cookie_monster.cc ('k') | net/base/cookie_util.h » ('j') | net/base/cookie_util.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698