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

Side by Side Diff: chrome/browser/download/download_util.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 unified diff | Download patch
« no previous file with comments | « chrome/browser/download/download_util.h ('k') | chrome/browser/web_applications/web_app.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 // Download utility implementation 5 // Download utility implementation
6 6
7 #include "chrome/browser/download/download_util.h" 7 #include "chrome/browser/download/download_util.h"
8 8
9 #if defined(OS_WIN) 9 #if defined(OS_WIN)
10 #include <shobjidl.h> 10 #include <shobjidl.h>
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 taskbar->SetProgressState(frame, TBPF_NOPROGRESS); 488 taskbar->SetProgressState(frame, TBPF_NOPROGRESS);
489 else if (!progress_known) 489 else if (!progress_known)
490 taskbar->SetProgressState(frame, TBPF_INDETERMINATE); 490 taskbar->SetProgressState(frame, TBPF_INDETERMINATE);
491 else 491 else
492 taskbar->SetProgressValue(frame, (int)(progress * 100), 100); 492 taskbar->SetProgressValue(frame, (int)(progress * 100), 100);
493 } 493 }
494 #endif 494 #endif
495 } 495 }
496 #endif 496 #endif
497 497
498 // Appends the passed the number between parenthesis the path before the
499 // extension.
500 void AppendNumberToPath(FilePath* path, int number) {
501 file_util::InsertBeforeExtension(path,
502 StringPrintf(FILE_PATH_LITERAL(" (%d)"), number));
503 }
504
505 // Attempts to find a number that can be appended to that path to make it
506 // unique. If |path| does not exist, 0 is returned. If it fails to find such
507 // a number, -1 is returned.
508 int GetUniquePathNumber(const FilePath& path) {
509 const int kMaxAttempts = 100;
510
511 if (!file_util::PathExists(path))
512 return 0;
513
514 FilePath new_path;
515 for (int count = 1; count <= kMaxAttempts; ++count) {
516 new_path = FilePath(path);
517 AppendNumberToPath(&new_path, count);
518
519 if (!file_util::PathExists(new_path))
520 return count;
521 }
522
523 return -1;
524 }
525
498 } // namespace download_util 526 } // namespace download_util
OLDNEW
« no previous file with comments | « chrome/browser/download/download_util.h ('k') | chrome/browser/web_applications/web_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698