| Index: chrome/browser/ssl/ssl_client_auth_handler.h
|
| diff --git a/chrome/browser/ssl/ssl_client_auth_handler.h b/chrome/browser/ssl/ssl_client_auth_handler.h
|
| index 6d7550d4ab2d7e2864a7a74d5b86329280120342..0a07d79c7fb00c477d555ec676a6a98156293fc2 100644
|
| --- a/chrome/browser/ssl/ssl_client_auth_handler.h
|
| +++ b/chrome/browser/ssl/ssl_client_auth_handler.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H
|
| -#define CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H
|
| +#ifndef CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
|
| +#define CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
|
|
|
| #include "base/basictypes.h"
|
| #include "base/ref_counted.h"
|
| @@ -18,8 +18,8 @@ class URLRequest;
|
| // authentication by the user.
|
| // It is self-owned and deletes itself when the UI reports the user selection or
|
| // when the URLRequest is cancelled.
|
| -class SSLClientAuthHandler :
|
| - public base::RefCountedThreadSafe<SSLClientAuthHandler> {
|
| +class SSLClientAuthHandler
|
| + : public base::RefCountedThreadSafe<SSLClientAuthHandler> {
|
| public:
|
| SSLClientAuthHandler(URLRequest* request,
|
| net::SSLCertRequestInfo* cert_request_info);
|
| @@ -55,4 +55,4 @@ class SSLClientAuthHandler :
|
| DISALLOW_COPY_AND_ASSIGN(SSLClientAuthHandler);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H
|
| +#endif // CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
|
|
|