| 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/auto_launch_trial.h" | 10 #include "chrome/browser/auto_launch_trial.h" |
| 11 #include "chrome/browser/first_run/first_run.h" | 11 #include "chrome/browser/first_run/first_run.h" |
| 12 #include "chrome/browser/prefs/pref_service.h" | 12 #include "chrome/browser/prefs/pref_service.h" |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "chrome/browser/infobars/infobar_tab_helper.h" | 14 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 15 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | 15 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" |
| 16 #include "chrome/browser/ui/browser.h" | 16 #include "chrome/browser/ui/browser.h" |
| 17 #include "chrome/browser/ui/browser_list.h" | 17 #include "chrome/browser/ui/browser_finder.h" |
| 18 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 18 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 19 #include "chrome/common/chrome_constants.h" | 19 #include "chrome/common/chrome_constants.h" |
| 20 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
| 21 #include "chrome/common/pref_names.h" | 21 #include "chrome/common/pref_names.h" |
| 22 #include "chrome/installer/util/auto_launch_util.h" | 22 #include "chrome/installer/util/auto_launch_util.h" |
| 23 #include "content/public/browser/browser_thread.h" | 23 #include "content/public/browser/browser_thread.h" |
| 24 #include "content/public/browser/navigation_details.h" | 24 #include "content/public/browser/navigation_details.h" |
| 25 #include "grit/chromium_strings.h" | 25 #include "grit/chromium_strings.h" |
| 26 #include "grit/generated_resources.h" | 26 #include "grit/generated_resources.h" |
| 27 #include "grit/theme_resources.h" | 27 #include "grit/theme_resources.h" |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 profile_->GetPath().BaseName().value())); | 146 profile_->GetPath().BaseName().value())); |
| 147 return true; | 147 return true; |
| 148 } | 148 } |
| 149 | 149 |
| 150 void CheckAutoLaunchCallback(Profile* profile) { | 150 void CheckAutoLaunchCallback(Profile* profile) { |
| 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 = BrowserList::FindAnyBrowser(profile, true); | 156 Browser* browser = browser::FindAnyBrowser(profile, true); |
| 157 TabContentsWrapper* tab = browser->GetSelectedTabContentsWrapper(); | 157 TabContentsWrapper* tab = browser->GetSelectedTabContentsWrapper(); |
| 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->infobar_count() > 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())); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 browser | 206 } // namespace browser |
| 207 | 207 |
| OLD | NEW |