Loosen up heuristics for detecting account creation forms.
[chromium-blink-merge.git] / content / shell / shell_resource_dispatcher_host_delegate.cc
blob23d4124fb22932cee6dc132c40692e5437470335
1 // Copyright (c) 2012 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.
5 #include "content/shell/shell_resource_dispatcher_host_delegate.h"
7 #include "base/command_line.h"
8 #include "content/shell/shell_login_dialog.h"
9 #include "content/shell/shell_switches.h"
11 namespace content {
13 ShellResourceDispatcherHostDelegate::ShellResourceDispatcherHostDelegate() {
16 ShellResourceDispatcherHostDelegate::~ShellResourceDispatcherHostDelegate() {
19 bool ShellResourceDispatcherHostDelegate::AcceptAuthRequest(
20 net::URLRequest* request,
21 net::AuthChallengeInfo* auth_info) {
22 bool accept_auth_request =
23 !CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree);
24 return accept_auth_request;
27 ResourceDispatcherHostLoginDelegate*
28 ShellResourceDispatcherHostDelegate::CreateLoginDelegate(
29 net::AuthChallengeInfo* auth_info, net::URLRequest* request) {
30 if (!login_request_callback_.is_null()) {
31 login_request_callback_.Run();
32 login_request_callback_.Reset();
33 return NULL;
36 #if !defined(OS_MACOSX) && !defined(TOOLKIT_GTK)
37 // TODO: implement ShellLoginDialog for other platforms, drop this #if
38 return NULL;
39 #else
40 return new ShellLoginDialog(auth_info, request);
41 #endif
44 } // namespace content