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

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

Issue 1513043002: clang/win: Let remaining chromium_code targets build with -Wextra. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years 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/web_applications/update_shortcut_worker_win.cc ('k') | chrome/child/pdf_child_init.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/web_applications/web_app_win.cc
diff --git a/chrome/browser/web_applications/web_app_win.cc b/chrome/browser/web_applications/web_app_win.cc
index 18772be01290fe04feb78b6704ea1e592d594e23..86e5a0eaa0bd8af8d5afce89dbc1a92abec1d0da 100644
--- a/chrome/browser/web_applications/web_app_win.cc
+++ b/chrome/browser/web_applications/web_app_win.cc
@@ -590,7 +590,7 @@ std::vector<base::FilePath> GetShortcutPaths(
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
// Populate shortcut_paths.
- for (int i = 0; i < arraysize(locations); ++i) {
+ for (size_t i = 0; i < arraysize(locations); ++i) {
if (locations[i].use_this_location) {
base::FilePath path;
if (!ShellUtil::GetShortcutPath(locations[i].location_id,
« no previous file with comments | « chrome/browser/web_applications/update_shortcut_worker_win.cc ('k') | chrome/child/pdf_child_init.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698