diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 23:00:40 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 23:00:40 +0000 |
commit | e2d745a40960443829db963121e972b4ede877a0 (patch) | |
tree | 2015e7e140878ef61af19a5adb1e7d9d4b93b98d /chrome/test/testing_profile.cc | |
parent | b647cf88f396b6d60aaa7f2206d37b3a9a2e4a50 (diff) | |
download | chromium_src-e2d745a40960443829db963121e972b4ede877a0.zip chromium_src-e2d745a40960443829db963121e972b4ede877a0.tar.gz chromium_src-e2d745a40960443829db963121e972b4ede877a0.tar.bz2 |
Add some tests to CookieMonster for overwriting persistent cookies, and checking that the PersistentCookieStore interface is exercised correctly.
Review URL: http://codereview.chromium.org/600040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.cc')
-rw-r--r-- | chrome/test/testing_profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc index 94ddf97..5cae4f7 100644 --- a/chrome/test/testing_profile.cc +++ b/chrome/test/testing_profile.cc @@ -86,7 +86,7 @@ class BookmarkLoadObserver : public BookmarkModelObserver { class TestURLRequestContext : public URLRequestContext { public: TestURLRequestContext() { - cookie_store_ = new net::CookieMonster(); + cookie_store_ = new net::CookieMonster(NULL); } }; |