Index: chrome/browser/web_applications/web_app.cc |
=================================================================== |
--- chrome/browser/web_applications/web_app.cc (revision 146065) |
+++ chrome/browser/web_applications/web_app.cc (working copy) |
@@ -127,20 +127,10 @@ |
BrowserThread::FILE, |
FROM_HERE, |
base::Bind(base::IgnoreResult(&CreateShortcutOnFileThread), |
- profile_path, shortcut_info)); |
+ profile_path, |
+ shortcut_info)); |
} |
-void DeleteAllShortcuts(const FilePath& profile_path, |
- const std::string& extension_id) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- |
- BrowserThread::PostTask( |
- BrowserThread::FILE, |
- FROM_HERE, |
- base::Bind(&internals::DeletePlatformShortcuts, profile_path, |
- extension_id)); |
-} |
- |
bool CreateShortcutOnFileThread( |
const FilePath& profile_path, |
const ShellIntegration::ShortcutInfo& shortcut_info) { |