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

Side by Side Diff: net/http/http_auth_handler_basic.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « net/http/http_auth_handler.cc ('k') | net/http/http_auth_handler_basic.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_
6 #define NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_
7
8 #include <string>
9
10 #include "net/base/net_export.h"
11 #include "net/http/http_auth_handler.h"
12 #include "net/http/http_auth_handler_factory.h"
13
14 namespace net {
15
16 // Code for handling http basic authentication.
17 class NET_EXPORT_PRIVATE HttpAuthHandlerBasic : public HttpAuthHandler {
18 public:
19 class NET_EXPORT_PRIVATE Factory : public HttpAuthHandlerFactory {
20 public:
21 Factory();
22 ~Factory() override;
23
24 int CreateAuthHandler(HttpAuthChallengeTokenizer* challenge,
25 HttpAuth::Target target,
26 const GURL& origin,
27 CreateReason reason,
28 int digest_nonce_count,
29 const BoundNetLog& net_log,
30 scoped_ptr<HttpAuthHandler>* handler) override;
31 };
32
33 HttpAuth::AuthorizationResult HandleAnotherChallenge(
34 HttpAuthChallengeTokenizer* challenge) override;
35
36 protected:
37 bool Init(HttpAuthChallengeTokenizer* challenge) override;
38
39 int GenerateAuthTokenImpl(const AuthCredentials* credentials,
40 const HttpRequestInfo* request,
41 const CompletionCallback& callback,
42 std::string* auth_token) override;
43
44 private:
45 ~HttpAuthHandlerBasic() override {}
46
47 bool ParseChallenge(HttpAuthChallengeTokenizer* challenge);
48 };
49
50 } // namespace net
51
52 #endif // NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_
OLDNEW
« no previous file with comments | « net/http/http_auth_handler.cc ('k') | net/http/http_auth_handler_basic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698