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/startup/default_browser_prompt.h" | 5 #include "chrome/browser/ui/startup/default_browser_prompt.h" |
6 | 6 |
7 #include "base/memory/weak_ptr.h" | 7 #include "base/memory/weak_ptr.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
10 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" | 10 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 return; // Reached during ui tests. | 215 return; // Reached during ui tests. |
216 | 216 |
217 // In ChromeBot tests, there might be a race. This line appears to get | 217 // In ChromeBot tests, there might be a race. This line appears to get |
218 // called during shutdown and |tab| can be NULL. | 218 // called during shutdown and |tab| can be NULL. |
219 TabContents* tab = chrome::GetActiveTabContents(browser); | 219 TabContents* tab = chrome::GetActiveTabContents(browser); |
220 if (!tab) | 220 if (!tab) |
221 return; | 221 return; |
222 | 222 |
223 // Don't show the info-bar if there are already info-bars showing. | 223 // Don't show the info-bar if there are already info-bars showing. |
224 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); | 224 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); |
225 if (infobar_helper->infobar_count() > 0) | 225 if (infobar_helper->GetInfoBarCount() > 0) |
226 return; | 226 return; |
227 | 227 |
228 bool interactive_flow = ShellIntegration::CanSetAsDefaultBrowser() == | 228 bool interactive_flow = ShellIntegration::CanSetAsDefaultBrowser() == |
229 ShellIntegration::SET_DEFAULT_INTERACTIVE; | 229 ShellIntegration::SET_DEFAULT_INTERACTIVE; |
230 infobar_helper->AddInfoBar( | 230 infobar_helper->AddInfoBar( |
231 new DefaultBrowserInfoBarDelegate(infobar_helper, | 231 new DefaultBrowserInfoBarDelegate(infobar_helper, |
232 tab->profile()->GetPrefs(), | 232 tab->profile()->GetPrefs(), |
233 interactive_flow)); | 233 interactive_flow)); |
234 } | 234 } |
235 | 235 |
236 } // namespace internal | 236 } // namespace internal |
237 } // namespace chrome | 237 } // namespace chrome |
OLD | NEW |