| 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/autolaunch_prompt.h" | 5 #include "chrome/browser/ui/startup/autolaunch_prompt.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" | 10 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 if (!auto_launch_trial::IsInAutoLaunchGroup()) | 151 if (!auto_launch_trial::IsInAutoLaunchGroup()) |
| 152 return; | 152 return; |
| 153 | 153 |
| 154 // We must not use GetLastActive here because this is at Chrome startup and | 154 // We must not use GetLastActive here because this is at Chrome startup and |
| 155 // no window might have been made active yet. We'll settle for any window. | 155 // no window might have been made active yet. We'll settle for any window. |
| 156 Browser* browser = browser::FindAnyBrowser(profile, true); | 156 Browser* browser = browser::FindAnyBrowser(profile, true); |
| 157 TabContents* tab = chrome::GetActiveTabContents(browser); | 157 TabContents* tab = chrome::GetActiveTabContents(browser); |
| 158 | 158 |
| 159 // Don't show the info-bar if there are already info-bars showing. | 159 // Don't show the info-bar if there are already info-bars showing. |
| 160 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); | 160 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); |
| 161 if (infobar_helper->infobar_count() > 0) | 161 if (infobar_helper->GetInfoBarCount() > 0) |
| 162 return; | 162 return; |
| 163 | 163 |
| 164 infobar_helper->AddInfoBar( | 164 infobar_helper->AddInfoBar( |
| 165 new AutolaunchInfoBarDelegate(infobar_helper, | 165 new AutolaunchInfoBarDelegate(infobar_helper, |
| 166 tab->profile()->GetPrefs(), tab->profile())); | 166 tab->profile()->GetPrefs(), tab->profile())); |
| 167 } | 167 } |
| 168 | 168 |
| 169 } // namespace | 169 } // namespace |
| 170 | 170 |
| 171 namespace chrome { | 171 namespace chrome { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 197 } | 197 } |
| 198 return false; | 198 return false; |
| 199 } | 199 } |
| 200 | 200 |
| 201 void RegisterAutolaunchPrefs(PrefService* prefs) { | 201 void RegisterAutolaunchPrefs(PrefService* prefs) { |
| 202 prefs->RegisterIntegerPref( | 202 prefs->RegisterIntegerPref( |
| 203 prefs::kShownAutoLaunchInfobar, 0, PrefService::UNSYNCABLE_PREF); | 203 prefs::kShownAutoLaunchInfobar, 0, PrefService::UNSYNCABLE_PREF); |
| 204 } | 204 } |
| 205 | 205 |
| 206 } // namespace chrome | 206 } // namespace chrome |
| OLD | NEW |