Title: [113472] trunk/Source/WebCore
- Revision
- 113472
- Author
- [email protected]
- Date
- 2012-04-06 11:56:50 -0700 (Fri, 06 Apr 2012)
Log Message
Fix build warning on const long long to int implicit conversion.
* inspector/InspectorApplicationCacheAgent.cpp:
(WebCore::InspectorApplicationCacheAgent::buildObjectForApplicationCacheResource):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (113471 => 113472)
--- trunk/Source/WebCore/ChangeLog 2012-04-06 18:55:54 UTC (rev 113471)
+++ trunk/Source/WebCore/ChangeLog 2012-04-06 18:56:50 UTC (rev 113472)
@@ -1,3 +1,10 @@
+2012-04-06 Jon Lee <[email protected]>
+
+ Fix build warning on const long long to int implicit conversion.
+
+ * inspector/InspectorApplicationCacheAgent.cpp:
+ (WebCore::InspectorApplicationCacheAgent::buildObjectForApplicationCacheResource):
+
2012-04-06 Emil A Eklund <[email protected]>
Fix LayoutUnit usage and rounding in RenderBlock and RenderEmbeddedObject
Modified: trunk/Source/WebCore/inspector/InspectorApplicationCacheAgent.cpp (113471 => 113472)
--- trunk/Source/WebCore/inspector/InspectorApplicationCacheAgent.cpp 2012-04-06 18:55:54 UTC (rev 113471)
+++ trunk/Source/WebCore/inspector/InspectorApplicationCacheAgent.cpp 2012-04-06 18:56:50 UTC (rev 113472)
@@ -203,7 +203,7 @@
RefPtr<TypeBuilder::ApplicationCache::ApplicationCacheResource> value = TypeBuilder::ApplicationCache::ApplicationCacheResource::create()
.setUrl(resourceInfo.m_resource.string())
- .setSize(resourceInfo.m_size)
+ .setSize(static_cast<int>(resourceInfo.m_size))
.setType(types);
return value;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes