OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/shell/shell_login_dialog.h" | 5 #include "content/shell/browser/shell_login_dialog.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "content/public/browser/browser_thread.h" | 10 #include "content/public/browser/browser_thread.h" |
11 #include "content/public/browser/resource_dispatcher_host.h" | 11 #include "content/public/browser/resource_dispatcher_host.h" |
12 #include "net/base/auth.h" | 12 #include "net/base/auth.h" |
13 #include "net/url_request/url_request.h" | 13 #include "net/url_request/url_request.h" |
14 #include "ui/base/text/text_elider.h" | 14 #include "ui/base/text/text_elider.h" |
15 | 15 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 else | 98 else |
99 request_->CancelAuth(); | 99 request_->CancelAuth(); |
100 ResourceDispatcherHost::Get()->ClearLoginDelegateForRequest(request_); | 100 ResourceDispatcherHost::Get()->ClearLoginDelegateForRequest(request_); |
101 | 101 |
102 BrowserThread::PostTask( | 102 BrowserThread::PostTask( |
103 BrowserThread::UI, FROM_HERE, | 103 BrowserThread::UI, FROM_HERE, |
104 base::Bind(&ShellLoginDialog::PlatformCleanUp, this)); | 104 base::Bind(&ShellLoginDialog::PlatformCleanUp, this)); |
105 } | 105 } |
106 | 106 |
107 } // namespace content | 107 } // namespace content |
OLD | NEW |