diff options
author | Steve Block <steveblock@google.com> | 2010-10-06 08:07:49 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-10-06 08:07:49 -0700 |
commit | 08817161ae6caddd24794dfd675db28cff0a6f48 (patch) | |
tree | f05b8a00a1e11e313a137899988a83a7a71429b7 | |
parent | 821cfee07d114f74b98673d380d90c08d001df02 (diff) | |
parent | 1e7a069684c79d0100dd35592105f462a72fb8bd (diff) | |
download | external_webkit-08817161ae6caddd24794dfd675db28cff0a6f48.zip external_webkit-08817161ae6caddd24794dfd675db28cff0a6f48.tar.gz external_webkit-08817161ae6caddd24794dfd675db28cff0a6f48.tar.bz2 |
Merge "Fix a compiler warning"
-rw-r--r-- | WebKit/android/jni/WebViewCore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/jni/WebViewCore.cpp b/WebKit/android/jni/WebViewCore.cpp index 9f0d260..68b1e01 100644 --- a/WebKit/android/jni/WebViewCore.cpp +++ b/WebKit/android/jni/WebViewCore.cpp @@ -3553,7 +3553,7 @@ static jboolean HandleTouchEvent(JNIEnv *env, jobject obj, jint action, jint* ptrXArray = env->GetIntArrayElements(xArray, 0); jint* ptrYArray = env->GetIntArrayElements(yArray, 0); Vector<IntPoint> points(count); - for (unsigned c = 0; c < count; c++) { + for (int c = 0; c < count; c++) { points[c].setX(ptrXArray[c]); points[c].setY(ptrYArray[c]); } |