Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: WebCore/bindings/js/JSDOMBinding.cpp

Issue 5722007: Merge 73605 - 2010-12-07 Jeremy Orlow <jorlow@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/597/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « WebCore/ChangeLog ('k') | WebCore/bindings/v8/V8Proxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/bindings/js/JSDOMBinding.cpp
===================================================================
--- WebCore/bindings/js/JSDOMBinding.cpp (revision 73908)
+++ WebCore/bindings/js/JSDOMBinding.cpp (working copy)
@@ -86,6 +86,11 @@
#include "JSFileException.h"
#endif
+#if ENABLE(INDEXED_DATABASE)
+#include "IDBDatabaseException.h"
+#include "JSIDBDatabaseException.h"
+#endif
+
using namespace JSC;
namespace WebCore {
@@ -650,6 +655,11 @@
errorObject = toJS(exec, globalObject, FileException::create(description));
break;
#endif
+#if ENABLE(INDEXED_DATABASE)
+ case IDBDatabaseExceptionType:
+ errorObject = toJS(exec, globalObject, IDBDatabaseException::create(description));
+ break;
+#endif
}
ASSERT(errorObject);
« no previous file with comments | « WebCore/ChangeLog ('k') | WebCore/bindings/v8/V8Proxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698