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

Unified Diff: WebCore/bindings/v8/V8Proxy.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/bindings/js/JSDOMBinding.cpp ('k') | WebCore/dom/ExceptionCode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/bindings/v8/V8Proxy.cpp
===================================================================
--- WebCore/bindings/v8/V8Proxy.cpp (revision 73908)
+++ WebCore/bindings/v8/V8Proxy.cpp (working copy)
@@ -37,6 +37,7 @@
#include "DocumentLoader.h"
#include "Frame.h"
#include "FrameLoaderClient.h"
+#include "IDBDatabaseException.h"
#include "IDBFactoryBackendInterface.h"
#include "IDBPendingTransactionMonitor.h"
#include "InspectorInstrumentation.h"
@@ -64,6 +65,10 @@
#include "WorkerContext.h"
#include "WorkerContextExecutionProxy.h"
+#if ENABLE(INDEXED_DATABASE)
+#include "V8IDBDatabaseException.h"
+#endif
+
#if ENABLE(SVG)
#include "V8SVGException.h"
#endif
@@ -673,6 +678,11 @@
exception = toV8(FileException::create(description));
break;
#endif
+#if ENABLE(INDEXED_DATABASE)
+ case IDBDatabaseExceptionType:
+ exception = toV8(IDBDatabaseException::create(description));
+ break;
+#endif
default:
ASSERT_NOT_REACHED();
}
« no previous file with comments | « WebCore/bindings/js/JSDOMBinding.cpp ('k') | WebCore/dom/ExceptionCode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698