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

Unified Diff: net/http/url_security_manager_unittest.cc

Issue 3155046: Add support for delegated Kerberos tickets during Negotiate authentication. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 months 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
« no previous file with comments | « net/http/url_security_manager_posix.cc ('k') | net/http/url_security_manager_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/url_security_manager_unittest.cc
===================================================================
--- net/http/url_security_manager_unittest.cc (revision 57541)
+++ net/http/url_security_manager_unittest.cc (working copy)
@@ -44,12 +44,12 @@
} // namespace
TEST(URLSecurityManager, CreateWhitelist) {
- HttpAuthFilterWhitelist* auth_filter = new HttpAuthFilterWhitelist();
+ HttpAuthFilterWhitelist* auth_filter = new HttpAuthFilterWhitelist(
+ kTestAuthWhitelist);
ASSERT_TRUE(auth_filter);
- auth_filter->SetWhitelist(kTestAuthWhitelist);
// The URL security manager takes ownership of |auth_filter|.
scoped_ptr<URLSecurityManager> url_security_manager(
- URLSecurityManager::Create(auth_filter));
+ URLSecurityManager::Create(auth_filter, NULL));
ASSERT_TRUE(url_security_manager.get());
for (size_t i = 0; i < arraysize(kTestDataList); ++i) {
« no previous file with comments | « net/http/url_security_manager_posix.cc ('k') | net/http/url_security_manager_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698