Title: [115583] trunk/Source/WebCore
- Revision
- 115583
- Author
- [email protected]
- Date
- 2012-04-28 15:33:50 -0700 (Sat, 28 Apr 2012)
Log Message
Fix the Chromium build.
* bindings/v8/custom/V8BlobCustom.cpp:
(WebCore::V8Blob::constructorCallback):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (115582 => 115583)
--- trunk/Source/WebCore/ChangeLog 2012-04-28 22:24:48 UTC (rev 115582)
+++ trunk/Source/WebCore/ChangeLog 2012-04-28 22:33:50 UTC (rev 115583)
@@ -1,3 +1,10 @@
+2012-04-28 Sam Weinig <[email protected]>
+
+ Fix the Chromium build.
+
+ * bindings/v8/custom/V8BlobCustom.cpp:
+ (WebCore::V8Blob::constructorCallback):
+
2012-04-27 Sam Weinig <[email protected]>
Add support for the Blob constructor
Modified: trunk/Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp (115582 => 115583)
--- trunk/Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp 2012-04-28 22:24:48 UTC (rev 115582)
+++ trunk/Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp 2012-04-28 22:33:50 UTC (rev 115583)
@@ -68,7 +68,7 @@
if (!context)
return throwError("Blob constructor associated document is unavailable", V8Proxy::ReferenceError);
- if (!args.Length())
+ if (!args.Length()) {
RefPtr<Blob> blob = Blob::create();
return toV8(blob.get(), args.GetIsolate());
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes