Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: chrome/browser/ui/startup/autolaunch_prompt_win.cc

Issue 10690060: startup: Put it in chrome namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/infobars/infobar_tab_helper.h"
12 #include "chrome/browser/prefs/pref_service.h" 13 #include "chrome/browser/prefs/pref_service.h"
13 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.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/browser_tabstrip.h"
19 #include "chrome/browser/ui/tab_contents/tab_contents.h" 19 #include "chrome/browser/ui/tab_contents/tab_contents.h"
20 #include "chrome/common/chrome_constants.h" 20 #include "chrome/common/chrome_constants.h"
21 #include "chrome/common/chrome_switches.h" 21 #include "chrome/common/chrome_switches.h"
22 #include "chrome/common/pref_names.h" 22 #include "chrome/common/pref_names.h"
23 #include "chrome/installer/util/auto_launch_util.h" 23 #include "chrome/installer/util/auto_launch_util.h"
24 #include "content/public/browser/browser_thread.h" 24 #include "content/public/browser/browser_thread.h"
25 #include "content/public/browser/navigation_details.h" 25 #include "content/public/browser/navigation_details.h"
26 #include "grit/chromium_strings.h" 26 #include "grit/chromium_strings.h"
27 #include "grit/generated_resources.h" 27 #include "grit/generated_resources.h"
28 #include "grit/theme_resources.h" 28 #include "grit/theme_resources.h"
29 #include "grit/theme_resources_standard.h" 29 #include "grit/theme_resources_standard.h"
30 #include "ui/base/l10n/l10n_util.h" 30 #include "ui/base/l10n/l10n_util.h"
31 #include "ui/base/resource/resource_bundle.h" 31 #include "ui/base/resource/resource_bundle.h"
32 32
33 using content::BrowserThread; 33 using content::BrowserThread;
34 34
35 namespace { 35 namespace {
36 36
37 static const int kMaxInfobarShown = 5; 37 const int kMaxInfobarShown = 5;
38 38
39 // The delegate for the infobar shown when Chrome was auto-launched. 39 // The delegate for the infobar shown when Chrome was auto-launched.
40 class AutolaunchInfoBarDelegate : public ConfirmInfoBarDelegate { 40 class AutolaunchInfoBarDelegate : public ConfirmInfoBarDelegate {
41 public: 41 public:
42 AutolaunchInfoBarDelegate(InfoBarTabHelper* infobar_helper, 42 AutolaunchInfoBarDelegate(InfoBarTabHelper* infobar_helper,
43 PrefService* prefs, 43 PrefService* prefs,
44 Profile* profile); 44 Profile* profile);
45 virtual ~AutolaunchInfoBarDelegate(); 45 virtual ~AutolaunchInfoBarDelegate();
46 46
47 private: 47 private:
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 if (infobar_helper->infobar_count() > 0) 162 if (infobar_helper->infobar_count() > 0)
163 return; 163 return;
164 164
165 infobar_helper->AddInfoBar( 165 infobar_helper->AddInfoBar(
166 new AutolaunchInfoBarDelegate(infobar_helper, 166 new AutolaunchInfoBarDelegate(infobar_helper,
167 tab->profile()->GetPrefs(), tab->profile())); 167 tab->profile()->GetPrefs(), tab->profile()));
168 } 168 }
169 169
170 } // namespace 170 } // namespace
171 171
172 namespace browser { 172 namespace chrome {
173 173
174 bool ShowAutolaunchPrompt(Profile* profile) { 174 bool ShowAutolaunchPrompt(Profile* profile) {
175 if (!auto_launch_trial::IsInAutoLaunchGroup()) 175 if (!auto_launch_trial::IsInAutoLaunchGroup())
176 return false; 176 return false;
177 177
178 // Only supported on the main profile for now. 178 // Only supported on the main profile for now.
179 if (profile->GetPath().BaseName().value() != 179 if (profile->GetPath().BaseName().value() !=
180 ASCIIToUTF16(chrome::kInitialProfile)) { 180 ASCIIToUTF16(chrome::kInitialProfile)) {
181 return false; 181 return false;
182 } 182 }
(...skipping 14 matching lines...) Expand all
197 return true; 197 return true;
198 } 198 }
199 return false; 199 return false;
200 } 200 }
201 201
202 void RegisterAutolaunchPrefs(PrefService* prefs) { 202 void RegisterAutolaunchPrefs(PrefService* prefs) {
203 prefs->RegisterIntegerPref( 203 prefs->RegisterIntegerPref(
204 prefs::kShownAutoLaunchInfobar, 0, PrefService::UNSYNCABLE_PREF); 204 prefs::kShownAutoLaunchInfobar, 0, PrefService::UNSYNCABLE_PREF);
205 } 205 }
206 206
207 } // namespace browser 207 } // namespace chrome
208
OLDNEW
« no previous file with comments | « chrome/browser/ui/startup/autolaunch_prompt.cc ('k') | chrome/browser/ui/startup/bad_flags_prompt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698