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

Unified Diff: content/child/npapi/webplugin_ime_win.cc

Issue 1507413003: clang/win: Let some chromium_code targets build with -Wextra. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: content_browsertests 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 | « content/child/npapi/webplugin_delegate_impl_win.cc ('k') | content/common/cursors/webcursor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/webplugin_ime_win.cc
diff --git a/content/child/npapi/webplugin_ime_win.cc b/content/child/npapi/webplugin_ime_win.cc
index 7ff6a5d75156cd2706738c6b1b6eb80d3d083b26..e095ee1f780653bc820ab6a284e5fcbf28a7a07a 100644
--- a/content/child/npapi/webplugin_ime_win.cc
+++ b/content/child/npapi/webplugin_ime_win.cc
@@ -169,7 +169,7 @@ FARPROC WebPluginIMEWin::GetProcAddress(LPCSTR name) {
reinterpret_cast<FARPROC>(ImmSetCandidateWindow) },
{ "ImmSetOpenStatus", reinterpret_cast<FARPROC>(ImmSetOpenStatus) },
};
- for (int i = 0; i < arraysize(kImm32Functions); ++i) {
+ for (size_t i = 0; i < arraysize(kImm32Functions); ++i) {
if (!lstrcmpiA(name, kImm32Functions[i].name))
return kImm32Functions[i].function;
}
« no previous file with comments | « content/child/npapi/webplugin_delegate_impl_win.cc ('k') | content/common/cursors/webcursor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698