summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_auth_handler.cc')
-rw-r--r--net/http/http_auth_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_auth_handler.cc b/net/http/http_auth_handler.cc
index d123c21..3ba4109 100644
--- a/net/http/http_auth_handler.cc
+++ b/net/http/http_auth_handler.cc
@@ -65,7 +65,7 @@ NetLog::EventType EventTypeFromAuthTarget(HttpAuth::Target target) {
int HttpAuthHandler::GenerateAuthToken(const string16* username,
const string16* password,
const HttpRequestInfo* request,
- CompletionCallback* callback,
+ OldCompletionCallback* callback,
std::string* auth_token) {
// TODO(cbentzel): Enforce non-NULL callback after cleaning up SocketStream.
DCHECK(request);
@@ -95,7 +95,7 @@ bool HttpAuthHandler::AllowsExplicitCredentials() {
}
void HttpAuthHandler::OnGenerateAuthTokenComplete(int rv) {
- CompletionCallback* callback = original_callback_;
+ OldCompletionCallback* callback = original_callback_;
FinishGenerateAuthToken();
if (callback)
callback->Run(rv);