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

Side by Side Diff: chrome/browser/profiles/profile_shortcut_manager_win.cc

Issue 8785006: Badge Windows profile shortcuts with multi-user avatar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/profiles/profile_shortcut_manager_win.h" 5 #include "chrome/browser/profiles/profile_shortcut_manager_win.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
11 #include "base/stringprintf.h" 11 #include "base/stringprintf.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
13 #include "chrome/browser/app_icon_win.h"
13 #include "chrome/browser/browser_process.h" 14 #include "chrome/browser/browser_process.h"
14 #include "chrome/browser/prefs/pref_service.h" 15 #include "chrome/browser/prefs/pref_service.h"
15 #include "chrome/browser/profiles/profile_info_cache.h" 16 #include "chrome/browser/profiles/profile_info_cache.h"
17 #include "chrome/browser/profiles/profile_info_util.h"
16 #include "chrome/browser/profiles/profile_manager.h" 18 #include "chrome/browser/profiles/profile_manager.h"
17 #include "chrome/common/chrome_constants.h" 19 #include "chrome/common/chrome_constants.h"
18 #include "chrome/common/chrome_switches.h" 20 #include "chrome/common/chrome_switches.h"
19 #include "chrome/common/pref_names.h" 21 #include "chrome/common/pref_names.h"
20 #include "chrome/installer/util/browser_distribution.h" 22 #include "chrome/installer/util/browser_distribution.h"
21 #include "chrome/installer/util/shell_util.h" 23 #include "chrome/installer/util/shell_util.h"
22 #include "content/public/browser/browser_thread.h" 24 #include "content/public/browser/browser_thread.h"
23 #include "grit/generated_resources.h" 25 #include "grit/generated_resources.h"
26 #include "skia/ext/image_operations.h"
27 #include "skia/ext/platform_canvas.h"
24 #include "ui/base/l10n/l10n_util.h" 28 #include "ui/base/l10n/l10n_util.h"
29 #include "ui/gfx/icon_util.h"
30 #include "ui/gfx/image/image.h"
25 31
26 using content::BrowserThread; 32 using content::BrowserThread;
27 33
28 namespace { 34 namespace {
29 35
30 // Creates the argument to pass to the Windows executable that launches Chrome 36 // Creates the argument to pass to the Windows executable that launches Chrome
31 // with the profile in |profile_base_dir|. 37 // with the profile in |profile_base_dir|.
32 // For example: --profile-directory="Profile 2" 38 // For example: --profile-directory="Profile 2"
33 string16 CreateProfileShortcutSwitch(string16 profile_base_dir) { 39 string16 CreateProfileShortcutSwitch(string16 profile_base_dir) {
34 string16 profile_directory = base::StringPrintf(L"--%ls=\"%ls\"", 40 string16 profile_directory = base::StringPrintf(L"--%ls=\"%ls\"",
35 ASCIIToUTF16(switches::kProfileDirectory).c_str(), 41 ASCIIToUTF16(switches::kProfileDirectory).c_str(),
36 profile_base_dir.c_str()); 42 profile_base_dir.c_str());
37 return profile_directory; 43 return profile_directory;
38 } 44 }
39 45
40 // Wrap a ShellUtil function that returns a bool so it can be posted in a 46 // Wrap a ShellUtil function that returns a bool so it can be posted in a
41 // task to the FILE thread. 47 // task to the FILE thread.
42 void CallShellUtilBoolFunction( 48 void CallShellUtilBoolFunction(
43 const base::Callback<bool(void)>& bool_function) { 49 const base::Callback<bool(void)>& bool_function) {
44 bool_function.Run(); 50 bool_function.Run();
45 } 51 }
46 52
53 const char kProfileIconFileName[] = "Google Profile.ico";
54 const int kProfileAvatarShortcutBadgeWidth = 28;
55 const int kProfileAvatarShortcutBadgeHeight = 28;
56 const int kShortcutIconSize = 48;
57
47 } // namespace 58 } // namespace
48 59
49 ProfileShortcutManagerWin::ProfileShortcutManagerWin() { 60 ProfileShortcutManagerWin::ProfileShortcutManagerWin() {
50 } 61 }
51 62
52 ProfileShortcutManagerWin::~ProfileShortcutManagerWin() { 63 ProfileShortcutManagerWin::~ProfileShortcutManagerWin() {
53 } 64 }
54 65
55 void ProfileShortcutManagerWin::OnProfileAdded( 66 void ProfileShortcutManagerWin::OnProfileAdded(
56 const string16& profile_name, 67 const string16& profile_name,
57 const string16& profile_base_dir) { 68 const string16& profile_base_dir,
69 const string16& profile_path,
70 const gfx::Image* avatar_image) {
58 // Launch task to add shortcut to desktop on Windows. If this is the very 71 // Launch task to add shortcut to desktop on Windows. If this is the very
59 // first profile created, don't add the user name to the shortcut. 72 // first profile created, don't add the user name to the shortcut.
60 // TODO(mirandac): respect master_preferences choice to create no shortcuts 73 // TODO(mirandac): respect master_preferences choice to create no shortcuts
61 // (see http://crbug.com/104463) 74 // (see http://crbug.com/104463)
62 if (g_browser_process->profile_manager()->GetNumberOfProfiles() > 1) { 75 if (g_browser_process->profile_manager()->GetNumberOfProfiles() > 1) {
63 string16 profile_directory =
64 CreateProfileShortcutSwitch(profile_base_dir);
65 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, 76 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
66 base::Bind(&CreateChromeDesktopShortcutForProfile, 77 base::Bind(&CreateChromeDesktopShortcutForProfile,
67 profile_name, profile_directory, true)); 78 profile_name, profile_base_dir, profile_path, avatar_image,
79 true));
68 80
69 // If this is the very first multi-user account created, change the 81 // If this is the very first multi-user account created, change the
70 // original shortcut to launch with the First User profile. 82 // original shortcut to launch with the First User profile.
71 PrefService* local_state = g_browser_process->local_state(); 83 PrefService* local_state = g_browser_process->local_state();
72 if (local_state->GetInteger(prefs::kProfilesNumCreated) == 2) { 84 if (local_state->GetInteger(prefs::kProfilesNumCreated) == 2) {
73 string16 default_name = l10n_util::GetStringUTF16( 85 string16 default_name = l10n_util::GetStringUTF16(
74 IDS_DEFAULT_PROFILE_NAME); 86 IDS_DEFAULT_PROFILE_NAME);
75 string16 default_directory =
76 CreateProfileShortcutSwitch(UTF8ToUTF16(chrome::kInitialProfile));
77 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); 87 BrowserDistribution* dist = BrowserDistribution::GetDistribution();
78 88
79 string16 old_shortcut; 89 string16 old_shortcut;
80 string16 new_shortcut; 90 string16 new_shortcut;
81 if (ShellUtil::GetChromeShortcutName(dist, false, L"", &old_shortcut) && 91 if (ShellUtil::GetChromeShortcutName(dist, false, L"", &old_shortcut) &&
82 ShellUtil::GetChromeShortcutName(dist, false, default_name, 92 ShellUtil::GetChromeShortcutName(dist, false, default_name,
83 &new_shortcut)) { 93 &new_shortcut)) {
84 // Update doesn't allow changing the target, so rename first. 94 // Update doesn't allow changing the target, so rename first.
85 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, 95 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
86 base::Bind(&RenameChromeDesktopShortcutForProfile, 96 base::Bind(&RenameChromeDesktopShortcutForProfile,
87 old_shortcut, new_shortcut)); 97 old_shortcut, new_shortcut));
88 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, 98 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
89 base::Bind(&UpdateChromeDesktopShortcutForProfile, 99 base::Bind(&UpdateChromeDesktopShortcutForProfile,
90 new_shortcut, default_directory)); 100 new_shortcut, UTF8ToUTF16(chrome::kInitialProfile),
101 profile_path, avatar_image));
91 } 102 }
92 } 103 }
93 } else { // Only one profile, so create original shortcut. 104 } else { // Only one profile, so create original shortcut.
94 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, 105 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
95 base::Bind(&CreateChromeDesktopShortcutForProfile, 106 base::Bind(&CreateChromeDesktopShortcutForProfile,
96 L"", L"", true)); 107 L"", L"", L"", static_cast<gfx::Image*>(NULL), true));
97 } 108 }
98 } 109 }
99 110
100 void ProfileShortcutManagerWin::OnProfileRemoved( 111 void ProfileShortcutManagerWin::OnProfileRemoved(
101 const string16& profile_name) { 112 const string16& profile_name) {
102 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); 113 BrowserDistribution* dist = BrowserDistribution::GetDistribution();
103 string16 shortcut; 114 string16 shortcut;
104 if (ShellUtil::GetChromeShortcutName(dist, false, profile_name, &shortcut)) { 115 if (ShellUtil::GetChromeShortcutName(dist, false, profile_name, &shortcut)) {
105 std::vector<string16> shortcuts(1, shortcut); 116 std::vector<string16> shortcuts(1, shortcut);
106 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, 117 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
(...skipping 17 matching lines...) Expand all
124 dist, false, old_profile_name, &old_shortcut) && 135 dist, false, old_profile_name, &old_shortcut) &&
125 ShellUtil::GetChromeShortcutName( 136 ShellUtil::GetChromeShortcutName(
126 dist, false, new_profile_name, &new_shortcut)) { 137 dist, false, new_profile_name, &new_shortcut)) {
127 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, 138 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
128 base::Bind(&RenameChromeDesktopShortcutForProfile, 139 base::Bind(&RenameChromeDesktopShortcutForProfile,
129 old_shortcut, 140 old_shortcut,
130 new_shortcut)); 141 new_shortcut));
131 } 142 }
132 } 143 }
133 144
145 void ProfileShortcutManagerWin::OnProfileAvatarChanged(
146 const string16& profile_name,
147 const string16& profile_base_dir,
148 const string16& profile_path,
149 const gfx::Image* avatar_image) {
150 // Launch task to change the icon of the desktop shortcut on windows.
151 string16 new_shortcut;
152 BrowserDistribution* dist = BrowserDistribution::GetDistribution();
153 if (ShellUtil::GetChromeShortcutName(dist, false, profile_name,
154 &new_shortcut)) {
155 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
156 base::Bind(&UpdateChromeDesktopShortcutForProfile,
157 new_shortcut, CreateProfileShortcutSwitch(profile_base_dir),
158 profile_path, avatar_image));
159 }
160 }
161
134 // static 162 // static
135 std::vector<string16> ProfileShortcutManagerWin::GenerateShortcutsFromProfiles( 163 std::vector<string16> ProfileShortcutManagerWin::GenerateShortcutsFromProfiles(
136 const std::vector<string16>& profile_names) { 164 const std::vector<string16>& profile_names) {
137 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); 165 BrowserDistribution* dist = BrowserDistribution::GetDistribution();
138 std::vector<string16> shortcuts; 166 std::vector<string16> shortcuts;
139 shortcuts.reserve(profile_names.size()); 167 shortcuts.reserve(profile_names.size());
140 for (std::vector<string16>::const_iterator it = profile_names.begin(); 168 for (std::vector<string16>::const_iterator it = profile_names.begin();
141 it != profile_names.end(); 169 it != profile_names.end();
142 ++it) { 170 ++it) {
143 string16 shortcut; 171 string16 shortcut;
144 if (ShellUtil::GetChromeShortcutName(dist, false, *it, &shortcut)) 172 if (ShellUtil::GetChromeShortcutName(dist, false, *it, &shortcut))
145 shortcuts.push_back(shortcut); 173 shortcuts.push_back(shortcut);
146 } 174 }
147 return shortcuts; 175 return shortcuts;
148 } 176 }
149 177
150 // static 178 // static
151 void ProfileShortcutManagerWin::CreateChromeDesktopShortcutForProfile( 179 void ProfileShortcutManagerWin::CreateChromeDesktopShortcutForProfile(
152 const string16& profile_name, 180 const string16& profile_name,
153 const string16& directory, 181 const string16& profile_base_dir,
182 const string16& profile_path,
183 const gfx::Image* avatar_image,
154 bool create) { 184 bool create) {
155 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); 185 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
156 FilePath chrome_exe; 186 FilePath chrome_exe;
157 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) 187 if (!PathService::Get(base::FILE_EXE, &chrome_exe))
158 return; 188 return;
159 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); 189 BrowserDistribution* dist = BrowserDistribution::GetDistribution();
160 string16 description; 190 string16 description;
161 if (!dist) 191 if (!dist)
162 return; 192 return;
163 else 193 else
164 description = WideToUTF16(dist->GetAppDescription()); 194 description = WideToUTF16(dist->GetAppDescription());
195 const string16& directory = CreateProfileShortcutSwitch(profile_base_dir);
196 FilePath icon_path =
197 CreateChromeDesktopShortcutIconForProfile(profile_path, avatar_image);
198
165 ShellUtil::CreateChromeDesktopShortcut( 199 ShellUtil::CreateChromeDesktopShortcut(
166 dist, 200 dist,
167 chrome_exe.value(), 201 chrome_exe.value(),
168 description, 202 description,
169 profile_name, 203 profile_name,
170 directory, 204 directory,
205 icon_path.empty() ? chrome_exe.value() : icon_path.value(),
206 icon_path.empty() ? dist->GetIconIndex() : 0,
171 ShellUtil::CURRENT_USER, 207 ShellUtil::CURRENT_USER,
172 false, // Use alternate text. 208 false, // Use alternate text.
173 create); // Create if it doesn't already exist. 209 create); // Create if it doesn't already exist.
174 } 210 }
175 211
176 // static 212 // static
177 void ProfileShortcutManagerWin::RenameChromeDesktopShortcutForProfile( 213 void ProfileShortcutManagerWin::RenameChromeDesktopShortcutForProfile(
178 const string16& old_shortcut, 214 const string16& old_shortcut,
179 const string16& new_shortcut) { 215 const string16& new_shortcut) {
180 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); 216 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
181 FilePath shortcut_path; 217 FilePath shortcut_path;
182 if (ShellUtil::GetDesktopPath(false, // User's directory instead of system. 218 if (ShellUtil::GetDesktopPath(false, // User's directory instead of system.
183 &shortcut_path)) { 219 &shortcut_path)) {
184 FilePath old_profile = shortcut_path.Append(old_shortcut); 220 FilePath old_profile = shortcut_path.Append(old_shortcut);
185 FilePath new_profile = shortcut_path.Append(new_shortcut); 221 FilePath new_profile = shortcut_path.Append(new_shortcut);
186 file_util::Move(old_profile, new_profile); 222 file_util::Move(old_profile, new_profile);
187 } 223 }
188 } 224 }
189 225
190 // static 226 // static
191 void ProfileShortcutManagerWin::UpdateChromeDesktopShortcutForProfile( 227 void ProfileShortcutManagerWin::UpdateChromeDesktopShortcutForProfile(
192 const string16& shortcut, 228 const string16& shortcut,
193 const string16& arguments) { 229 const string16& arguments,
230 const string16& profile_path,
231 const gfx::Image* avatar_image) {
194 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); 232 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
195 FilePath shortcut_path; 233 FilePath shortcut_path;
196 if (!ShellUtil::GetDesktopPath(false, &shortcut_path)) 234 if (!ShellUtil::GetDesktopPath(false, &shortcut_path))
197 return; 235 return;
198 236
199 shortcut_path = shortcut_path.Append(shortcut); 237 shortcut_path = shortcut_path.Append(shortcut);
200 FilePath chrome_exe; 238 FilePath chrome_exe;
201 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) 239 if (!PathService::Get(base::FILE_EXE, &chrome_exe))
202 return; 240 return;
203 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); 241 BrowserDistribution* dist = BrowserDistribution::GetDistribution();
204 string16 description; 242 string16 description;
205 if (!dist) 243 if (!dist)
206 return; 244 return;
207 else 245 else
208 description = WideToUTF16(dist->GetAppDescription()); 246 description = WideToUTF16(dist->GetAppDescription());
247 FilePath icon_path =
248 CreateChromeDesktopShortcutIconForProfile(profile_path, avatar_image);
249
209 ShellUtil::UpdateChromeShortcut( 250 ShellUtil::UpdateChromeShortcut(
210 dist, 251 dist,
211 chrome_exe.value(), 252 chrome_exe.value(),
212 shortcut_path.value(), 253 shortcut_path.value(),
213 arguments, 254 arguments,
214 description, 255 description,
256 icon_path.empty() ? chrome_exe.value() : icon_path.value(),
257 icon_path.empty() ? dist->GetIconIndex() : 0,
215 false); 258 false);
216 } 259 }
260
261 // static
262 FilePath ProfileShortcutManagerWin::CreateChromeDesktopShortcutIconForProfile(
263 const string16& profile_path,
264 const gfx::Image* avatar_image) {
sail 2011/12/02 23:47:54 gfx::Image isn't thread safe. Also, I don't think
SteveT 2011/12/03 03:19:15 Fixed as we discussed.
265 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
266 if (!avatar_image)
267 return FilePath();
268 const SkBitmap* avatar_bitmap = avatar_image->ToSkBitmap();
269 DCHECK(avatar_bitmap);
270 HICON app_icon_handle = GetAppIconForSize(kShortcutIconSize);
271 scoped_ptr<SkBitmap> app_icon_bitmap(
272 IconUtil::CreateSkBitmapFromHICON(app_icon_handle));
273 DestroyIcon(app_icon_handle);
274 if (!app_icon_bitmap.get())
275 return FilePath();
276
277 // TODO(stevet): Share this chunk of code with
278 // avatar_menu_button::DrawTaskBarDecoration.
279 const SkBitmap* source_bitmap = NULL;
280 SkBitmap squarer_bitmap;
281 if ((avatar_bitmap->width() == profiles::kAvatarIconWidth) &&
282 (avatar_bitmap->height() == profiles::kAvatarIconHeight)) {
283 // Shave a couple of columns so the bitmap is more square. So when
284 // resized to a square aspect ratio it looks pretty.
285 int x = 2;
286 avatar_bitmap->extractSubset(&squarer_bitmap, SkIRect::MakeXYWH(x, 0,
287 profiles::kAvatarIconWidth - x * 2, profiles::kAvatarIconHeight));
288 source_bitmap = &squarer_bitmap;
289 } else {
290 source_bitmap = avatar_bitmap;
291 }
292 SkBitmap sk_icon = skia::ImageOperations::Resize(
293 *source_bitmap,
294 skia::ImageOperations::RESIZE_LANCZOS3,
295 kProfileAvatarShortcutBadgeWidth,
296 kProfileAvatarShortcutBadgeHeight);
297
298 // Overlay the avatar on the icon, anchoring it to the bottom-right of the
299 // icon.
300 scoped_ptr<SkCanvas> offscreen_canvas(
301 skia::CreateBitmapCanvas(app_icon_bitmap->width(),
302 app_icon_bitmap->height(),
303 false));
304 DCHECK(offscreen_canvas.get());
305 offscreen_canvas->drawBitmap(*app_icon_bitmap, 0, 0);
306 offscreen_canvas->drawBitmap(
307 sk_icon,
308 app_icon_bitmap->width() - kProfileAvatarShortcutBadgeWidth,
309 app_icon_bitmap->height() - kProfileAvatarShortcutBadgeHeight);
310 const SkBitmap& final_bitmap =
311 offscreen_canvas->getDevice()->accessBitmap(false);
312
313 // Finally, write the .ico file containing this new bitmap.
314 FilePath icon_path(profile_path);
315 icon_path = icon_path.AppendASCII(kProfileIconFileName);
316 if (!IconUtil::CreateIconFileFromSkBitmap(final_bitmap, icon_path))
317 return FilePath();
318
319 return icon_path;
320 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698