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

Unified Diff: chrome/browser/shell_integration_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
Index: chrome/browser/shell_integration_win.cc
diff --git a/chrome/browser/shell_integration_win.cc b/chrome/browser/shell_integration_win.cc
index 5de8cf594fd0de990384fa1462fad084432e9ac2..6ed09cfd9a7e39679c0849b0d99439bb2bd332b1 100644
--- a/chrome/browser/shell_integration_win.cc
+++ b/chrome/browser/shell_integration_win.cc
@@ -165,7 +165,7 @@ void MigrateChromiumShortcutsCallback() {
}
};
- for (int i = 0; i < arraysize(kLocations); ++i) {
+ for (size_t i = 0; i < arraysize(kLocations); ++i) {
base::FilePath path;
if (!PathService::Get(kLocations[i].location_id, &path)) {
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698