| Index: chrome/browser/web_applications/update_shortcut_worker_win.cc
|
| diff --git a/chrome/browser/web_applications/update_shortcut_worker_win.cc b/chrome/browser/web_applications/update_shortcut_worker_win.cc
|
| index 09b0051642dc9aeeb064e809efe7eae35602f242..26810eb22b851b30b247a6ddfe667539b1bf4c1e 100644
|
| --- a/chrome/browser/web_applications/update_shortcut_worker_win.cc
|
| +++ b/chrome/browser/web_applications/update_shortcut_worker_win.cc
|
| @@ -154,7 +154,7 @@ void UpdateShortcutWorker::CheckExistingShortcuts() {
|
| }
|
| };
|
|
|
| - for (int i = 0; i < arraysize(locations); ++i) {
|
| + for (size_t i = 0; i < arraysize(locations); ++i) {
|
| base::FilePath path;
|
| if (!PathService::Get(locations[i].location_id, &path)) {
|
| NOTREACHED();
|
|
|