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

Side by Side Diff: net/ftp/ftp_auth_cache.h

Issue 6362186595172352: net: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and revert nss_ocsp.cc changes Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/dns/dns_config_service_win.cc ('k') | net/ftp/ftp_auth_cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_FTP_FTP_AUTH_CACHE_H_ 5 #ifndef NET_FTP_FTP_AUTH_CACHE_H_
6 #define NET_FTP_FTP_AUTH_CACHE_H_ 6 #define NET_FTP_FTP_AUTH_CACHE_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "googleurl/src/gurl.h"
11 #include "net/base/auth.h" 10 #include "net/base/auth.h"
12 #include "net/base/net_export.h" 11 #include "net/base/net_export.h"
12 #include "url/gurl.h"
13 13
14 namespace net { 14 namespace net {
15 15
16 // The FtpAuthCache class is a simple cache structure to store authentication 16 // The FtpAuthCache class is a simple cache structure to store authentication
17 // information for ftp. Provides lookup, insertion, and deletion of entries. 17 // information for ftp. Provides lookup, insertion, and deletion of entries.
18 // The parameter for doing lookups, insertions, and deletions is a GURL of the 18 // The parameter for doing lookups, insertions, and deletions is a GURL of the
19 // server's address (not a full URL with path, since FTP auth isn't per path). 19 // server's address (not a full URL with path, since FTP auth isn't per path).
20 // For example: 20 // For example:
21 // GURL("ftp://myserver") -- OK (implied port of 21) 21 // GURL("ftp://myserver") -- OK (implied port of 21)
22 // GURL("ftp://myserver:21") -- OK 22 // GURL("ftp://myserver:21") -- OK
(...skipping 29 matching lines...) Expand all
52 typedef std::list<Entry> EntryList; 52 typedef std::list<Entry> EntryList;
53 53
54 // Internal representation of cache, an STL list. This makes lookups O(n), 54 // Internal representation of cache, an STL list. This makes lookups O(n),
55 // but we expect n to be very low. 55 // but we expect n to be very low.
56 EntryList entries_; 56 EntryList entries_;
57 }; 57 };
58 58
59 } // namespace net 59 } // namespace net
60 60
61 #endif // NET_FTP_FTP_AUTH_CACHE_H_ 61 #endif // NET_FTP_FTP_AUTH_CACHE_H_
OLDNEW
« no previous file with comments | « net/dns/dns_config_service_win.cc ('k') | net/ftp/ftp_auth_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698