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_finder.h" | 17 #include "chrome/browser/ui/browser_finder.h" |
| 18 #include "chrome/browser/ui/browser_tabstrip.h" |
18 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 19 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
19 #include "chrome/common/chrome_constants.h" | 20 #include "chrome/common/chrome_constants.h" |
20 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
21 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
22 #include "chrome/installer/util/auto_launch_util.h" | 23 #include "chrome/installer/util/auto_launch_util.h" |
23 #include "content/public/browser/browser_thread.h" | 24 #include "content/public/browser/browser_thread.h" |
24 #include "content/public/browser/navigation_details.h" | 25 #include "content/public/browser/navigation_details.h" |
25 #include "grit/chromium_strings.h" | 26 #include "grit/chromium_strings.h" |
26 #include "grit/generated_resources.h" | 27 #include "grit/generated_resources.h" |
27 #include "grit/theme_resources.h" | 28 #include "grit/theme_resources.h" |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 return should_expire_; | 148 return should_expire_; |
148 } | 149 } |
149 | 150 |
150 void CheckAutoLaunchCallback(Profile* profile) { | 151 void CheckAutoLaunchCallback(Profile* profile) { |
151 if (!auto_launch_trial::IsInAutoLaunchGroup()) | 152 if (!auto_launch_trial::IsInAutoLaunchGroup()) |
152 return; | 153 return; |
153 | 154 |
154 // We must not use GetLastActive here because this is at Chrome startup and | 155 // 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. | 156 // no window might have been made active yet. We'll settle for any window. |
156 Browser* browser = browser::FindAnyBrowser(profile, true); | 157 Browser* browser = browser::FindAnyBrowser(profile, true); |
157 TabContents* tab = browser->GetActiveTabContents(); | 158 TabContents* tab = chrome::GetActiveTabContents(browser); |
158 | 159 |
159 // Don't show the info-bar if there are already info-bars showing. | 160 // Don't show the info-bar if there are already info-bars showing. |
160 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); | 161 InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper(); |
161 if (infobar_helper->infobar_count() > 0) | 162 if (infobar_helper->infobar_count() > 0) |
162 return; | 163 return; |
163 | 164 |
164 infobar_helper->AddInfoBar( | 165 infobar_helper->AddInfoBar( |
165 new AutolaunchInfoBarDelegate(infobar_helper, | 166 new AutolaunchInfoBarDelegate(infobar_helper, |
166 tab->profile()->GetPrefs(), tab->profile())); | 167 tab->profile()->GetPrefs(), tab->profile())); |
167 } | 168 } |
(...skipping 30 matching lines...) Expand all Loading... |
198 return false; | 199 return false; |
199 } | 200 } |
200 | 201 |
201 void RegisterAutolaunchPrefs(PrefService* prefs) { | 202 void RegisterAutolaunchPrefs(PrefService* prefs) { |
202 prefs->RegisterIntegerPref( | 203 prefs->RegisterIntegerPref( |
203 prefs::kShownAutoLaunchInfobar, 0, PrefService::UNSYNCABLE_PREF); | 204 prefs::kShownAutoLaunchInfobar, 0, PrefService::UNSYNCABLE_PREF); |
204 } | 205 } |
205 | 206 |
206 } // namespace browser | 207 } // namespace browser |
207 | 208 |
OLD | NEW |