diff options
author | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-04 21:53:40 +0000 |
---|---|---|
committer | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-04 21:53:40 +0000 |
commit | bf97cfbd3c36b2f938f522ae97f82288ef60459e (patch) | |
tree | 6035122f28b72c535fb5dbeca3a2a4facc8df6aa /net | |
parent | 2cc16956945089bb18d83aa8582ddd9e7c5cbe8b (diff) | |
download | chromium_src-bf97cfbd3c36b2f938f522ae97f82288ef60459e.zip chromium_src-bf97cfbd3c36b2f938f522ae97f82288ef60459e.tar.gz chromium_src-bf97cfbd3c36b2f938f522ae97f82288ef60459e.tar.bz2 |
Remove CRLF from http_auth_handler_negotiate_posix.cc
BUG=NONE
TEST=Built
Review URL: http://codereview.chromium.org/578005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38138 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rwxr-xr-x | net/http/http_auth_handler_negotiate_posix.cc | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/net/http/http_auth_handler_negotiate_posix.cc b/net/http/http_auth_handler_negotiate_posix.cc index 169689d..581b489 100755 --- a/net/http/http_auth_handler_negotiate_posix.cc +++ b/net/http/http_auth_handler_negotiate_posix.cc @@ -1,45 +1,45 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/http/http_auth_handler_negotiate.h"
-
-#include "base/logging.h"
-
-namespace net {
-
-// TODO(cbentzel): Negotiate authentication protocol is not supported on Posix
-// systems currently. These stubs make the main HTTP Authentication code bypass
-// Negotiate without requiring conditional compilation.
-
-HttpAuthHandlerNegotiate::HttpAuthHandlerNegotiate() {
-}
-
-HttpAuthHandlerNegotiate::~HttpAuthHandlerNegotiate() {
-}
-
-bool HttpAuthHandlerNegotiate::NeedsIdentity() {
- NOTREACHED();
- return false;
-}
-
-bool HttpAuthHandlerNegotiate::IsFinalRound() {
- NOTREACHED();
- return false;
-}
-
-bool HttpAuthHandlerNegotiate::Init(std::string::const_iterator challenge_begin,
- std::string::const_iterator challenge_end) {
- return false;
-}
-
-std::string HttpAuthHandlerNegotiate::GenerateCredentials(
- const std::wstring& username,
- const std::wstring& password,
- const HttpRequestInfo* request,
- const ProxyInfo* proxy) {
- NOTREACHED();
- return std::string();
-}
-
-} // namespace net
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "net/http/http_auth_handler_negotiate.h" + +#include "base/logging.h" + +namespace net { + +// TODO(cbentzel): Negotiate authentication protocol is not supported on Posix +// systems currently. These stubs make the main HTTP Authentication code bypass +// Negotiate without requiring conditional compilation. + +HttpAuthHandlerNegotiate::HttpAuthHandlerNegotiate() { +} + +HttpAuthHandlerNegotiate::~HttpAuthHandlerNegotiate() { +} + +bool HttpAuthHandlerNegotiate::NeedsIdentity() { + NOTREACHED(); + return false; +} + +bool HttpAuthHandlerNegotiate::IsFinalRound() { + NOTREACHED(); + return false; +} + +bool HttpAuthHandlerNegotiate::Init(std::string::const_iterator challenge_begin, + std::string::const_iterator challenge_end) { + return false; +} + +std::string HttpAuthHandlerNegotiate::GenerateCredentials( + const std::wstring& username, + const std::wstring& password, + const HttpRequestInfo* request, + const ProxyInfo* proxy) { + NOTREACHED(); + return std::string(); +} + +} // namespace net |