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

Unified Diff: views/touchui/touch_factory.h

Issue 7312028: Fixing signed/unsigned char bug on ARM for TouchFactory (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/touchui/touch_factory.h
diff --git a/views/touchui/touch_factory.h b/views/touchui/touch_factory.h
index 201f5bdac4489684b9c69fce0461786711208f23..5191a71d158a1240e32ac3428e9d2ba2bb8ae18a 100644
--- a/views/touchui/touch_factory.h
+++ b/views/touchui/touch_factory.h
@@ -174,7 +174,7 @@ class TouchFactory {
// index at the expense of space. If the kMaxDeviceNum grows larger that the
// space waste becomes a concern, the 2D lookup table can be replaced by a
// hash map.
- char valuator_lookup_[kMaxDeviceNum][TP_LAST_ENTRY];
+ signed char valuator_lookup_[kMaxDeviceNum][TP_LAST_ENTRY];
// Index table to find the min & max value of the TouchParam on a specific
// device.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698