OLD | NEW |
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/shell_integration.h" | 5 #include "chrome/browser/shell_integration.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <shobjidl.h> | 8 #include <shobjidl.h> |
9 #include <propkey.h> | 9 #include <propkey.h> |
10 #include <propvarutil.h> | 10 #include <propvarutil.h> |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 bool MigrateChromiumShortcutsTask::GetExpectedAppId( | 198 bool MigrateChromiumShortcutsTask::GetExpectedAppId( |
199 IShellLink* shell_link, | 199 IShellLink* shell_link, |
200 std::wstring* expected_app_id) const { | 200 std::wstring* expected_app_id) const { |
201 DCHECK(shell_link); | 201 DCHECK(shell_link); |
202 DCHECK(expected_app_id); | 202 DCHECK(expected_app_id); |
203 | 203 |
204 expected_app_id->clear(); | 204 expected_app_id->clear(); |
205 | 205 |
206 // Check if the shortcut points to chrome_exe. | 206 // Check if the shortcut points to chrome_exe. |
207 std::wstring source; | 207 std::wstring source; |
208 if (FAILED(shell_link->GetPath(WriteInto(&source, MAX_PATH), | 208 if (FAILED(shell_link->GetPath(WriteInto(&source, MAX_PATH), MAX_PATH, NULL, |
209 MAX_PATH, | |
210 NULL, | |
211 SLGP_RAWPATH)) || | 209 SLGP_RAWPATH)) || |
212 lstrcmpi(chrome_exe_.value().c_str(), source.c_str())) | 210 lstrcmpi(chrome_exe_.value().c_str(), source.c_str())) |
213 return false; | 211 return false; |
214 | 212 |
215 std::wstring arguments; | 213 std::wstring arguments; |
216 if (FAILED(shell_link->GetArguments(WriteInto(&arguments, MAX_PATH), | 214 if (FAILED(shell_link->GetArguments(WriteInto(&arguments, MAX_PATH), |
217 MAX_PATH))) | 215 MAX_PATH))) |
218 return false; | 216 return false; |
219 | 217 |
220 // Get expected app id from shortcut command line. | 218 // Get expected app id from shortcut command line. |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 return icon_path; | 535 return icon_path; |
538 } | 536 } |
539 | 537 |
540 void ShellIntegration::MigrateChromiumShortcuts() { | 538 void ShellIntegration::MigrateChromiumShortcuts() { |
541 if (base::win::GetVersion() < base::win::VERSION_WIN7) | 539 if (base::win::GetVersion() < base::win::VERSION_WIN7) |
542 return; | 540 return; |
543 | 541 |
544 BrowserThread::PostTask( | 542 BrowserThread::PostTask( |
545 BrowserThread::FILE, FROM_HERE, new MigrateChromiumShortcutsTask()); | 543 BrowserThread::FILE, FROM_HERE, new MigrateChromiumShortcutsTask()); |
546 } | 544 } |
OLD | NEW |