| 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/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| 11 #include "chrome/browser/first_run/first_run.h" | 11 #include "chrome/browser/first_run/first_run.h" |
| 12 #include "chrome/browser/infobars/infobar_tab_helper.h" | 12 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 13 #include "chrome/browser/prefs/pref_service.h" | 13 #include "chrome/browser/prefs/pref_service.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
| 15 #include "chrome/browser/shell_integration.h" | 15 #include "chrome/browser/shell_integration.h" |
| 16 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | 16 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" |
| 17 #include "chrome/browser/ui/browser.h" | 17 #include "chrome/browser/ui/browser.h" |
| 18 #include "chrome/browser/ui/browser_list.h" | 18 #include "chrome/browser/ui/browser_list.h" |
| 19 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 19 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 20 #include "chrome/common/pref_names.h" | 20 #include "chrome/common/pref_names.h" |
| 21 #include "content/public/browser/browser_thread.h" | 21 #include "content/public/browser/browser_thread.h" |
| 22 #include "content/public/browser/navigation_details.h" | 22 #include "content/public/browser/navigation_details.h" |
| 23 #include "grit/chromium_strings.h" | 23 #include "grit/chromium_strings.h" |
| 24 #include "grit/generated_resources.h" | 24 #include "grit/generated_resources.h" |
| 25 #include "grit/theme_resources.h" | 25 #include "grit/theme_resources.h" |
| 26 #include "grit/theme_resources_standard.h" | 26 #include "grit/theme_resources_standard.h" |
| 27 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
| 28 #include "ui/base/resource/resource_bundle.h" | 28 #include "ui/base/resource/resource_bundle.h" |
| 29 | 29 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 namespace internal { | 199 namespace internal { |
| 200 | 200 |
| 201 void NotifyNotDefaultBrowserCallback() { | 201 void NotifyNotDefaultBrowserCallback() { |
| 202 Browser* browser = BrowserList::GetLastActive(); | 202 Browser* browser = BrowserList::GetLastActive(); |
| 203 if (!browser) | 203 if (!browser) |
| 204 return; // Reached during ui tests. | 204 return; // Reached during ui tests. |
| 205 | 205 |
| 206 // In ChromeBot tests, there might be a race. This line appears to get | 206 // In ChromeBot tests, there might be a race. This line appears to get |
| 207 // called during shutdown and |tab| can be NULL. | 207 // called during shutdown and |tab| can be NULL. |
| 208 TabContentsWrapper* tab = browser->GetSelectedTabContentsWrapper(); | 208 TabContents* tab = browser->GetActiveTabContents(); |
| 209 if (!tab) | 209 if (!tab) |
| 210 return; | 210 return; |
| 211 | 211 |
| 212 // Don't show the info-bar if there are already info-bars showing. | 212 // Don't show the info-bar if there are already info-bars showing. |
| 213 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); | 213 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); |
| 214 if (infobar_helper->infobar_count() > 0) | 214 if (infobar_helper->infobar_count() > 0) |
| 215 return; | 215 return; |
| 216 | 216 |
| 217 bool interactive_flow = ShellIntegration::CanSetAsDefaultBrowser() == | 217 bool interactive_flow = ShellIntegration::CanSetAsDefaultBrowser() == |
| 218 ShellIntegration::SET_DEFAULT_INTERACTIVE; | 218 ShellIntegration::SET_DEFAULT_INTERACTIVE; |
| 219 infobar_helper->AddInfoBar( | 219 infobar_helper->AddInfoBar( |
| 220 new DefaultBrowserInfoBarDelegate(infobar_helper, | 220 new DefaultBrowserInfoBarDelegate(infobar_helper, |
| 221 tab->profile()->GetPrefs(), | 221 tab->profile()->GetPrefs(), |
| 222 interactive_flow)); | 222 interactive_flow)); |
| 223 } | 223 } |
| 224 | 224 |
| 225 } // namespace internal | 225 } // namespace internal |
| 226 } // namespace browser | 226 } // namespace browser |
| OLD | NEW |