| Index: net/ftp/ftp_auth_cache.h
|
| diff --git a/net/ftp/ftp_auth_cache.h b/net/ftp/ftp_auth_cache.h
|
| index 36156da01bf6644942e94200d4854695089c72d5..f935fe9dff5fc123ef4ef5f4d3379d25a63d9a4f 100644
|
| --- a/net/ftp/ftp_auth_cache.h
|
| +++ b/net/ftp/ftp_auth_cache.h
|
| @@ -28,19 +28,16 @@ class FtpAuthCache {
|
|
|
| struct Entry {
|
| Entry(const GURL& origin, const string16& username,
|
| - const string16& password)
|
| - : origin(origin),
|
| - username(username),
|
| - password(password) {
|
| - }
|
| + const string16& password);
|
| + ~Entry();
|
|
|
| const GURL origin;
|
| string16 username;
|
| string16 password;
|
| };
|
|
|
| - FtpAuthCache() {}
|
| - ~FtpAuthCache() {}
|
| + FtpAuthCache();
|
| + ~FtpAuthCache();
|
|
|
| // Return Entry corresponding to given |origin| or NULL if not found.
|
| Entry* Lookup(const GURL& origin);
|
|
|