[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc
eric at webkit.org
eric at webkit.org
Wed Dec 22 11:50:40 UTC 2010
The following commit has been merged in the debian/experimental branch:
commit c36883c6277abbb564b42e3fb62f0a2adf075417
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Aug 9 18:44:13 2010 +0000
2010-08-09 Marcus Bulach <bulach at 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:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64996 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index de9f788..f3de4c9 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-08-09 Marcus Bulach <bulach at 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:
+
2010-08-09 Sheriff Bot <webkit.review.bot at gmail.com>
Unreviewed, rolling out r64993.
diff --git a/WebCore/WebCore.xcodeproj/project.pbxproj b/WebCore/WebCore.xcodeproj/project.pbxproj
index 0dfaca6..cc67b6d 100644
--- a/WebCore/WebCore.xcodeproj/project.pbxproj
+++ b/WebCore/WebCore.xcodeproj/project.pbxproj
@@ -21182,7 +21182,6 @@
C585A66211D4FAC5004C3E4B /* IDBBindingUtilities.cpp in Sources */,
81A73260121018A400FC0D9E /* IDBCursor.cpp in Sources */,
81BE209811F4AB8D00915DFA /* IDBCursorBackendImpl.cpp in Sources */,
- 81BE209811F4AB8D00915DFA /* IDBCursorBackendImpl.cpp in Sources */,
B691C1F91206D4A00025D980 /* IDBDatabase.cpp in Sources */,
C585A6D511D4FB3D004C3E4B /* IDBDatabaseBackendImpl.cpp in Sources */,
C585A6DA11D4FB3D004C3E4B /* IDBErrorEvent.cpp in Sources */,
diff --git a/WebCore/bindings/js/JSIDBAnyCustom.cpp b/WebCore/bindings/js/JSIDBAnyCustom.cpp
index 0808b48..e428bf6 100644
--- a/WebCore/bindings/js/JSIDBAnyCustom.cpp
+++ b/WebCore/bindings/js/JSIDBAnyCustom.cpp
@@ -32,11 +32,13 @@
#include "JSIDBAny.h"
#include "IDBAny.h"
+#include "IDBCursor.h"
#include "IDBDatabase.h"
#include "IDBFactory.h"
#include "IDBIndex.h"
#include "IDBKey.h"
#include "IDBObjectStore.h"
+#include "JSIDBCursor.h"
#include "JSIDBDatabase.h"
#include "JSIDBFactory.h"
#include "JSIDBIndex.h"
@@ -58,6 +60,8 @@ JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, IDBAny* idbAny)
return jsUndefined();
case IDBAny::NullType:
return jsNull();
+ case IDBAny::IDBCursorType:
+ return toJS(exec, globalObject, idbAny->idbCursor());
case IDBAny::IDBDatabaseType:
return toJS(exec, globalObject, idbAny->idbDatabase());
case IDBAny::IDBIndexType:
diff --git a/WebCore/storage/IDBObjectStore.h b/WebCore/storage/IDBObjectStore.h
index 8b1d841..035f5d8 100644
--- a/WebCore/storage/IDBObjectStore.h
+++ b/WebCore/storage/IDBObjectStore.h
@@ -27,6 +27,7 @@
#define IDBObjectStore_h
#include "IDBCursor.h"
+#include "IDBKeyRange.h"
#include "IDBObjectStoreBackendInterface.h"
#include "IDBRequest.h"
#include "PlatformString.h"
@@ -41,7 +42,6 @@ namespace WebCore {
class DOMStringList;
class IDBAny;
class IDBIndexRequest;
-class IDBKeyRange;
class IDBKey;
class SerializedScriptValue;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list