| 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/auto_login_prompter.h" | 5 #include "chrome/browser/ui/auto_login_prompter.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/string_split.h" | 10 #include "base/string_split.h" |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 // relevant notifications; it will delete itself. | 148 // relevant notifications; it will delete itself. |
| 149 new AutoLoginPrompter(web_contents, username, args); | 149 new AutoLoginPrompter(web_contents, username, args); |
| 150 } | 150 } |
| 151 | 151 |
| 152 void AutoLoginPrompter::Observe(int type, | 152 void AutoLoginPrompter::Observe(int type, |
| 153 const content::NotificationSource& source, | 153 const content::NotificationSource& source, |
| 154 const content::NotificationDetails& details) { | 154 const content::NotificationDetails& details) { |
| 155 if (type == content::NOTIFICATION_LOAD_STOP) { | 155 if (type == content::NOTIFICATION_LOAD_STOP) { |
| 156 TabContentsWrapper* wrapper = | 156 TabContentsWrapper* wrapper = |
| 157 TabContentsWrapper::GetCurrentWrapperForContents(web_contents_); | 157 TabContentsWrapper::GetCurrentWrapperForContents(web_contents_); |
| 158 // |wrapper| is NULL for TabContents hosted in HTMLDialog. | 158 // |wrapper| is NULL for WebContents hosted in HTMLDialog. |
| 159 if (wrapper) { | 159 if (wrapper) { |
| 160 InfoBarTabHelper* infobar_helper = wrapper->infobar_tab_helper(); | 160 InfoBarTabHelper* infobar_helper = wrapper->infobar_tab_helper(); |
| 161 infobar_helper->AddInfoBar(new AutoLoginInfoBarDelegate(infobar_helper, | 161 infobar_helper->AddInfoBar(new AutoLoginInfoBarDelegate(infobar_helper, |
| 162 username_, | 162 username_, |
| 163 args_)); | 163 args_)); |
| 164 } | 164 } |
| 165 } | 165 } |
| 166 // Either we couldn't add the infobar, we added the infobar, or the tab | 166 // Either we couldn't add the infobar, we added the infobar, or the tab |
| 167 // contents was destroyed before the navigation completed. In any case | 167 // contents was destroyed before the navigation completed. In any case |
| 168 // there's no reason to live further. | 168 // there's no reason to live further. |
| 169 delete this; | 169 delete this; |
| 170 } | 170 } |
| OLD | NEW |