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

Unified Diff: chrome/browser/web_applications/web_app.cc

Issue 1276003: Append a number to make app shortcut name unique. (Closed)
Patch Set: Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/download/download_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/web_applications/web_app.cc
diff --git a/chrome/browser/web_applications/web_app.cc b/chrome/browser/web_applications/web_app.cc
index 9eebef450f0ab5733a12c1b583e16462555dd256..b5714b2687ce44f3878781f1c71eb998bf423a83 100644
--- a/chrome/browser/web_applications/web_app.cc
+++ b/chrome/browser/web_applications/web_app.cc
@@ -21,6 +21,7 @@
#include "base/scoped_ptr.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/chrome_thread.h"
+#include "chrome/browser/download/download_util.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/common/chrome_constants.h"
@@ -378,10 +379,21 @@ bool CreateShortcutTask::CreateShortcut() {
web_app::GenerateApplicationNameFromURL(shortcut_info_.url).c_str(),
profile_path_);
+ FilePath shortcut_to_pin;
+
bool success = true;
for (size_t i = 0; i < shortcut_paths.size(); ++i) {
FilePath shortcut_file = shortcut_paths[i].Append(file_name).
ReplaceExtension(FILE_PATH_LITERAL(".lnk"));
+
+ int unique_number = download_util::GetUniquePathNumber(shortcut_file);
+ if (unique_number == -1) {
+ success = false;
+ continue;
+ } else if (unique_number > 0) {
+ download_util::AppendNumberToPath(&shortcut_file, unique_number);
+ }
+
success &= file_util::CreateShortcutLink(chrome_exe.c_str(),
shortcut_file.value().c_str(),
chrome_folder.c_str(),
@@ -390,13 +402,20 @@ bool CreateShortcutTask::CreateShortcut() {
icon_file.value().c_str(),
0,
app_id.c_str());
+
+ // Any shortcut would work for the pinning. We use the first one.
+ if (success && pin_to_taskbar && shortcut_to_pin.empty())
+ shortcut_to_pin = shortcut_file;
}
if (success && pin_to_taskbar) {
- // Any shortcut would work for the pinning. We use the first one.
- FilePath shortcut_file = shortcut_paths[0].Append(file_name).
- ReplaceExtension(FILE_PATH_LITERAL(".lnk"));
- success &= file_util::TaskbarPinShortcutLink(shortcut_file.value().c_str());
+ if (!shortcut_to_pin.empty()) {
+ success &= file_util::TaskbarPinShortcutLink(
+ shortcut_to_pin.value().c_str());
+ } else {
+ NOTREACHED();
+ success = false;
+ }
}
return success;
« no previous file with comments | « chrome/browser/download/download_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698