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

Unified Diff: net/base/auth.h

Issue 8015004: webRequest.onAuthRequired listeners can provide authentication credentials. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle multiple blocking onAuthRequired Created 9 years, 3 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
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__

Powered by Google App Engine
This is Rietveld 408576698