| 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 "chrome/browser/ui/login/login_prompt.h" | 5 #include "chrome/browser/ui/login/login_prompt.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 void OnAutofillDataAvailableInternal( | 30 void OnAutofillDataAvailableInternal( |
| 31 const base::string16& username, | 31 const base::string16& username, |
| 32 const base::string16& password) override { | 32 const base::string16& password) override { |
| 33 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 33 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 34 DCHECK(chrome_http_auth_handler_.get() != NULL); | 34 DCHECK(chrome_http_auth_handler_.get() != NULL); |
| 35 chrome_http_auth_handler_->OnAutofillDataAvailable( | 35 chrome_http_auth_handler_->OnAutofillDataAvailable( |
| 36 username, password); | 36 username, password); |
| 37 } | 37 } |
| 38 void OnLoginModelDestroying() override {} | 38 void OnLoginModelDestroying() override {} |
| 39 | 39 |
| 40 void BuildView(const base::string16& explanation, | 40 void BuildViewImpl(const base::string16& explanation, |
| 41 LoginModelData* login_model_data) override { | 41 LoginModelData* login_model_data) override { |
| 42 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 42 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 43 | 43 |
| 44 // Get pointer to TabAndroid | 44 // Get pointer to TabAndroid |
| 45 content::WebContents* web_contents = GetWebContentsForLogin(); | 45 content::WebContents* web_contents = GetWebContentsForLogin(); |
| 46 CHECK(web_contents); | 46 CHECK(web_contents); |
| 47 WindowAndroidHelper* window_helper = WindowAndroidHelper::FromWebContents( | 47 WindowAndroidHelper* window_helper = WindowAndroidHelper::FromWebContents( |
| 48 web_contents); | 48 web_contents); |
| 49 | 49 |
| 50 // Notify WindowAndroid that HTTP authentication is required. | 50 // Notify WindowAndroid that HTTP authentication is required. |
| 51 if (window_helper->GetWindowAndroid()) { | 51 if (window_helper->GetWindowAndroid()) { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 75 | 75 |
| 76 private: | 76 private: |
| 77 scoped_ptr<ChromeHttpAuthHandler> chrome_http_auth_handler_; | 77 scoped_ptr<ChromeHttpAuthHandler> chrome_http_auth_handler_; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 // static | 80 // static |
| 81 LoginHandler* LoginHandler::Create(net::AuthChallengeInfo* auth_info, | 81 LoginHandler* LoginHandler::Create(net::AuthChallengeInfo* auth_info, |
| 82 net::URLRequest* request) { | 82 net::URLRequest* request) { |
| 83 return new LoginHandlerAndroid(auth_info, request); | 83 return new LoginHandlerAndroid(auth_info, request); |
| 84 } | 84 } |
| OLD | NEW |