Changeset 64996 in webkit


Ignore:
Timestamp:
Aug 9, 2010 11:44:13 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-08-09 Marcus Bulach <bulach@chromium.org>

Reviewed by Jeremy Orlow.

Fixes custom JS bindings for IDBCursor after r64828.
https://bugs.webkit.org/show_bug.cgi?id=43729

Build fix, no tests.

  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSIDBAnyCustom.cpp: (WebCore::toJS):
  • storage/IDBObjectStore.h:
Location:
trunk/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64994 r64996  
     12010-08-09  Marcus Bulach  <bulach@chromium.org>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        Fixes custom JS bindings for IDBCursor after r64828.
     6        https://bugs.webkit.org/show_bug.cgi?id=43729
     7
     8        Build fix, no tests.
     9
     10        * WebCore.xcodeproj/project.pbxproj:
     11        * bindings/js/JSIDBAnyCustom.cpp:
     12        (WebCore::toJS):
     13        * storage/IDBObjectStore.h:
     14
    1152010-08-09  Sheriff Bot  <webkit.review.bot@gmail.com>
    216
  • trunk/WebCore/WebCore.xcodeproj/project.pbxproj

    r64987 r64996  
    2118321183                                81A73260121018A400FC0D9E /* IDBCursor.cpp in Sources */,
    2118421184                                81BE209811F4AB8D00915DFA /* IDBCursorBackendImpl.cpp in Sources */,
    21185                                 81BE209811F4AB8D00915DFA /* IDBCursorBackendImpl.cpp in Sources */,
    2118621185                                B691C1F91206D4A00025D980 /* IDBDatabase.cpp in Sources */,
    2118721186                                C585A6D511D4FB3D004C3E4B /* IDBDatabaseBackendImpl.cpp in Sources */,
  • trunk/WebCore/bindings/js/JSIDBAnyCustom.cpp

    r64577 r64996  
    3333
    3434#include "IDBAny.h"
     35#include "IDBCursor.h"
    3536#include "IDBDatabase.h"
    3637#include "IDBFactory.h"
     
    3839#include "IDBKey.h"
    3940#include "IDBObjectStore.h"
     41#include "JSIDBCursor.h"
    4042#include "JSIDBDatabase.h"
    4143#include "JSIDBFactory.h"
     
    5961    case IDBAny::NullType:
    6062        return jsNull();
     63    case IDBAny::IDBCursorType:
     64        return toJS(exec, globalObject, idbAny->idbCursor());
    6165    case IDBAny::IDBDatabaseType:
    6266        return toJS(exec, globalObject, idbAny->idbDatabase());
  • trunk/WebCore/storage/IDBObjectStore.h

    r64828 r64996  
    2828
    2929#include "IDBCursor.h"
     30#include "IDBKeyRange.h"
    3031#include "IDBObjectStoreBackendInterface.h"
    3132#include "IDBRequest.h"
     
    4243class IDBAny;
    4344class IDBIndexRequest;
    44 class IDBKeyRange;
    4545class IDBKey;
    4646class SerializedScriptValue;
Note: See TracChangeset for help on using the changeset viewer.