Changeset 100230 in webkit
- Timestamp:
- Nov 14, 2011, 6:18:38 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
bindings/v8/custom/V8ArrayBufferViewCustom.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r100229 r100230 1 2011-11-14 Oliver Hunt <oliver@apple.com> 2 3 More V8 build fixes. 4 5 * bindings/v8/custom/V8ArrayBufferViewCustom.h: 6 (WebCore::setWebGLArrayHelper): 7 1 8 2011-11-14 Oliver Hunt <oliver@apple.com> 2 9 -
trunk/Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h
r97929 r100230 193 193 if (args.Length() == 2) 194 194 offset = toUInt32(args[1]); 195 ExceptionCode ec = 0; 196 impl->set(src, offset, ec); 197 V8Proxy::setDOMException(ec); 195 if (!impl->set(src, offset)) 196 V8Proxy::setDOMException(INDEX_SIZE_ERR); 198 197 return v8::Undefined(); 199 198 }
Note:
See TracChangeset
for help on using the changeset viewer.