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

Unified Diff: src/heap-snapshot-generator.cc

Issue 14075006: Fix build failures on Win64 since r14215. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 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 | « src/global-handles.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap-snapshot-generator.cc
diff --git a/src/heap-snapshot-generator.cc b/src/heap-snapshot-generator.cc
index 4bc3fe1d7b58fd7a16e45d02dfc107f19aa47cf0..cfa2ad31251658be6e6e3222e7be431539435c69 100644
--- a/src/heap-snapshot-generator.cc
+++ b/src/heap-snapshot-generator.cc
@@ -1948,9 +1948,9 @@ void NativeObjectsExplorer::FillRetainedObjects() {
groups->Sort();
infos->Sort();
- int info_ix = 0;
+ int info_index = 0;
UniqueId current_group_id(0);
- size_t current_group_start = 0;
+ int current_group_start = 0;
if (groups->length() > 0) {
for (int i = 0; i <= groups->length(); ++i) {
@@ -1959,12 +1959,12 @@ void NativeObjectsExplorer::FillRetainedObjects() {
if (i == groups->length() ||
current_group_id != groups->at(i).id) {
// Group detected: objects in indices [current_group_start, i[.
- if (info_ix < infos->length() &&
- infos->at(info_ix).id == groups->at(current_group_start).id) {
+ if (info_index < infos->length() &&
+ infos->at(info_index).id == groups->at(current_group_start).id) {
// Transfer the ownership of info.
List<HeapObject*>* list =
- GetListMaybeDisposeInfo(infos->at(info_ix).info);
- infos->at(info_ix).info = NULL;
+ GetListMaybeDisposeInfo(infos->at(info_index).info);
+ infos->at(info_index).info = NULL;
for (int j = current_group_start; j < i; ++j) {
HeapObject* obj = HeapObject::cast(*(groups->at(j).object));
list->Add(obj);
« no previous file with comments | « src/global-handles.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698