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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 return; // Reached during ui tests. | 218 return; // Reached during ui tests. |
219 | 219 |
220 // In ChromeBot tests, there might be a race. This line appears to get | 220 // In ChromeBot tests, there might be a race. This line appears to get |
221 // called during shutdown and |tab| can be NULL. | 221 // called during shutdown and |tab| can be NULL. |
222 TabContents* tab = chrome::GetActiveTabContents(browser); | 222 TabContents* tab = chrome::GetActiveTabContents(browser); |
223 if (!tab) | 223 if (!tab) |
224 return; | 224 return; |
225 | 225 |
226 // Don't show the info-bar if there are already info-bars showing. | 226 // Don't show the info-bar if there are already info-bars showing. |
227 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); | 227 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); |
228 if (infobar_helper->infobar_count() > 0) | 228 if (infobar_helper->GetInfoBarCount() > 0) |
229 return; | 229 return; |
230 | 230 |
231 bool interactive_flow = ShellIntegration::CanSetAsDefaultBrowser() == | 231 bool interactive_flow = ShellIntegration::CanSetAsDefaultBrowser() == |
232 ShellIntegration::SET_DEFAULT_INTERACTIVE; | 232 ShellIntegration::SET_DEFAULT_INTERACTIVE; |
233 infobar_helper->AddInfoBar( | 233 infobar_helper->AddInfoBar( |
234 new DefaultBrowserInfoBarDelegate(infobar_helper, | 234 new DefaultBrowserInfoBarDelegate(infobar_helper, |
235 tab->profile()->GetPrefs(), | 235 tab->profile()->GetPrefs(), |
236 interactive_flow)); | 236 interactive_flow)); |
237 } | 237 } |
238 | 238 |
239 } // namespace internal | 239 } // namespace internal |
240 } // namespace chrome | 240 } // namespace chrome |
OLD | NEW |