| Index: net/base/auth.h
|
| diff --git a/net/base/auth.h b/net/base/auth.h
|
| index 62a59c8f9fdad03a834a37ef4027313b43492f90..5e6a7f787b062783f931ee47ca2363bf43909a86 100644
|
| --- a/net/base/auth.h
|
| +++ b/net/base/auth.h
|
| @@ -16,8 +16,8 @@ namespace net {
|
|
|
| // Holds info about an authentication challenge that we may want to display
|
| // to the user.
|
| -class NET_EXPORT AuthChallengeInfo :
|
| - public base::RefCountedThreadSafe<AuthChallengeInfo> {
|
| +class NET_EXPORT AuthChallengeInfo
|
| + : public base::RefCountedThreadSafe<AuthChallengeInfo> {
|
| public:
|
| AuthChallengeInfo();
|
|
|
| @@ -92,7 +92,7 @@ enum AuthState {
|
| class AuthData : public base::RefCountedThreadSafe<AuthData> {
|
| public:
|
| AuthState state; // whether we need, have, or gave up on authentication.
|
| - AuthCredentials credentials; // The credentials to use for auth.
|
| + AuthCredentials credentials; // The credentials to use for auth.
|
|
|
| // We wouldn't instantiate this class if we didn't need authentication.
|
| AuthData();
|
|
|