⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 100230 in webkit


Ignore:
Timestamp:
Nov 14, 2011, 6:18:38 PM (15 years ago)
Author:
oliver@apple.com
Message:

More V8 build fixes.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r100229 r100230  
     12011-11-14  Oliver Hunt  <oliver@apple.com>
     2
     3        More V8 build fixes.
     4
     5        * bindings/v8/custom/V8ArrayBufferViewCustom.h:
     6        (WebCore::setWebGLArrayHelper):
     7
    182011-11-14  Oliver Hunt  <oliver@apple.com>
    29
  • trunk/Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h

    r97929 r100230  
    193193        if (args.Length() == 2)
    194194            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);
    198197        return v8::Undefined();
    199198    }
Note: See TracChangeset for help on using the changeset viewer.