Title: [100230] trunk/Source/WebCore
- Revision
- 100230
- Author
- [email protected]
- Date
- 2011-11-14 18:18:38 -0800 (Mon, 14 Nov 2011)
Log Message
More V8 build fixes.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (100229 => 100230)
--- trunk/Source/WebCore/ChangeLog 2011-11-15 02:06:08 UTC (rev 100229)
+++ trunk/Source/WebCore/ChangeLog 2011-11-15 02:18:38 UTC (rev 100230)
@@ -1,5 +1,12 @@
2011-11-14 Oliver Hunt <[email protected]>
+ More V8 build fixes.
+
+ * bindings/v8/custom/V8ArrayBufferViewCustom.h:
+ (WebCore::setWebGLArrayHelper):
+
+2011-11-14 Oliver Hunt <[email protected]>
+
Fix V8 build again.
* bindings/scripts/CodeGeneratorV8.pm:
Modified: trunk/Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h (100229 => 100230)
--- trunk/Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h 2011-11-15 02:06:08 UTC (rev 100229)
+++ trunk/Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h 2011-11-15 02:18:38 UTC (rev 100230)
@@ -192,9 +192,8 @@
uint32_t offset = 0;
if (args.Length() == 2)
offset = toUInt32(args[1]);
- ExceptionCode ec = 0;
- impl->set(src, offset, ec);
- V8Proxy::setDOMException(ec);
+ if (!impl->set(src, offset))
+ V8Proxy::setDOMException(INDEX_SIZE_ERR);
return v8::Undefined();
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes