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

Unified Diff: serializer/cross/serializer.cc

Issue 201046: This makes selenium in Firefox work on the Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 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 | tests/selenium/mac_chrome.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: serializer/cross/serializer.cc
===================================================================
--- serializer/cross/serializer.cc (revision 25628)
+++ serializer/cross/serializer.cc (working copy)
@@ -324,10 +324,10 @@
writer_->BeginCompacting();
writer_->OpenArray();
const Skin::InfluencesArray& influences_array = skin->influences();
- for (int i = 0; i != influences_array.size(); ++i) {
+ for (Skin::InfluencesArray::size_type i = 0; i != influences_array.size(); ++i) {
const Skin::Influences& influences = influences_array[i];
writer_->OpenArray();
- for (int j = 0; j != influences.size(); ++j) {
+ for (Skin::Influences::size_type j = 0; j != influences.size(); ++j) {
const Skin::Influence& influence = influences[j];
Serialize(writer_, influence.matrix_index);
Serialize(writer_, influence.weight);
« no previous file with comments | « no previous file | tests/selenium/mac_chrome.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698