Changeset 70478 in webkit


Ignore:
Timestamp:
Oct 25, 2010 12:48:47 PM (13 years ago)
Author:
benm@google.com
Message:

2010-10-25 Ben Murdoch <benm@google.com>

Reviewed by Steve Block.

Build break with ENABLE(BLOB) and not ENABLE(3D_CANVAS)
https://bugs.webkit.org/show_bug.cgi?id=48243

Build fix only so no new tests.

  • bindings/generic/RuntimeEnabledFeatures.h: Guard appropriately.
  • bindings/v8/custom/V8ArrayBufferViewCustom.h: ditto.
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70473 r70478  
     12010-10-25  Ben Murdoch  <benm@google.com>
     2
     3        Reviewed by Steve Block.
     4
     5        Build break with ENABLE(BLOB) and not ENABLE(3D_CANVAS)
     6        https://bugs.webkit.org/show_bug.cgi?id=48243
     7
     8        Build fix only so no new tests.
     9
     10        * bindings/generic/RuntimeEnabledFeatures.h: Guard appropriately.
     11        * bindings/v8/custom/V8ArrayBufferViewCustom.h: ditto.
     12
    1132010-10-25  Cris Neckar  <cdn@chromium.org>
    214
  • trunk/WebCore/bindings/generic/RuntimeEnabledFeatures.h

    r69540 r70478  
    9393#endif
    9494
    95 #if ENABLE(3D_CANVAS)
     95#if ENABLE(3D_CANVAS) || ENABLE(BLOB)
    9696    static void setWebGLEnabled(bool isEnabled) { isWebGLEnabled = isEnabled; }
    9797    static bool arrayBufferEnabled() { return isWebGLEnabled; }
  • trunk/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h

    r62194 r70478  
    3131#include "config.h"
    3232
    33 #if ENABLE(3D_CANVAS)
     33#if ENABLE(3D_CANVAS) || ENABLE(BLOB)
    3434
    3535#include "ArrayBuffer.h"
Note: See TracChangeset for help on using the changeset viewer.