Chromium Code Reviews| Index: net/base/auth.h |
| diff --git a/net/base/auth.h b/net/base/auth.h |
| index 51f8db95388cd699b10e90a4effd6f76f321e0e9..fc5f1748a483de5dcc6ef794ab0aa21e5dce9772 100644 |
| --- a/net/base/auth.h |
| +++ b/net/base/auth.h |
| @@ -65,6 +65,16 @@ class AuthData : public base::RefCountedThreadSafe<AuthData> { |
| ~AuthData(); |
| }; |
| +class AuthCredentials { |
| + public: |
| + AuthCredentials(); |
| + ~AuthCredentials(); |
| + |
| + bool is_valid; |
| + string16 username; |
| + string16 password; |
| +}; |
| + |
| } // namespace net |
| #endif // NET_BASE_AUTH_H__ |