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

Unified Diff: src/inspector/V8InternalValueType.cpp

Issue 2339173004: Revert of [inspector] fixed all shorten-64-to-32 warnings (Closed)
Patch Set: Created 4 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 | « src/inspector/V8HeapProfilerAgentImpl.cpp ('k') | src/inspector/V8RuntimeAgentImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/V8InternalValueType.cpp
diff --git a/src/inspector/V8InternalValueType.cpp b/src/inspector/V8InternalValueType.cpp
index 10da302f78b1fdf53a29549300bc50c4366ea6b0..2eade4ff56d3b3272c135ba16826d39ec2495fa0 100644
--- a/src/inspector/V8InternalValueType.cpp
+++ b/src/inspector/V8InternalValueType.cpp
@@ -49,7 +49,7 @@
v8::Isolate* isolate = context->GetIsolate();
v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate);
v8::Local<v8::String> subtype = subtypeForInternalType(isolate, type);
- for (uint32_t i = 0; i < array->Length(); ++i) {
+ for (size_t i = 0; i < array->Length(); ++i) {
v8::Local<v8::Value> entry;
if (!array->Get(context, i).ToLocal(&entry) || !entry->IsObject())
return false;
« no previous file with comments | « src/inspector/V8HeapProfilerAgentImpl.cpp ('k') | src/inspector/V8RuntimeAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698