Title: [142564] trunk/Source/WebKit/chromium
- Revision
- 142564
- Author
- [email protected]
- Date
- 2013-02-11 17:58:38 -0800 (Mon, 11 Feb 2013)
Log Message
IndexedDB: Add UnknownError to WebIDBDatabaseException
https://bugs.webkit.org/show_bug.cgi?id=109519
Reviewed by Adam Barth.
* public/WebIDBDatabaseException.h:
* src/AssertMatchingEnums.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (142563 => 142564)
--- trunk/Source/WebKit/chromium/ChangeLog 2013-02-12 01:52:19 UTC (rev 142563)
+++ trunk/Source/WebKit/chromium/ChangeLog 2013-02-12 01:58:38 UTC (rev 142564)
@@ -1,3 +1,13 @@
+2013-02-11 David Grogan <[email protected]>
+
+ IndexedDB: Add UnknownError to WebIDBDatabaseException
+ https://bugs.webkit.org/show_bug.cgi?id=109519
+
+ Reviewed by Adam Barth.
+
+ * public/WebIDBDatabaseException.h:
+ * src/AssertMatchingEnums.cpp:
+
2013-02-11 Sheriff Bot <[email protected]>
Unreviewed. Rolled Chromium DEPS to r181787. Requested by
Modified: trunk/Source/WebKit/chromium/public/WebIDBDatabaseException.h (142563 => 142564)
--- trunk/Source/WebKit/chromium/public/WebIDBDatabaseException.h 2013-02-12 01:52:19 UTC (rev 142563)
+++ trunk/Source/WebKit/chromium/public/WebIDBDatabaseException.h 2013-02-12 01:58:38 UTC (rev 142564)
@@ -34,6 +34,7 @@
namespace WebKit {
enum WebIDBDatabaseException {
+ WebIDBDatabaseExceptionUnknownError = 1201,
WebIDBDatabaseExceptionDataError = 1203,
WebIDBDatabaseExceptionAbortError = 1210,
WebIDBDatabaseExceptionQuotaError = 1212,
Modified: trunk/Source/WebKit/chromium/src/AssertMatchingEnums.cpp (142563 => 142564)
--- trunk/Source/WebKit/chromium/src/AssertMatchingEnums.cpp 2013-02-12 01:52:19 UTC (rev 142563)
+++ trunk/Source/WebKit/chromium/src/AssertMatchingEnums.cpp 2013-02-12 01:58:38 UTC (rev 142564)
@@ -485,6 +485,7 @@
COMPILE_ASSERT_MATCHING_ENUM(WebView::UserStyleInjectInSubsequentDocuments, InjectInSubsequentDocuments);
#if ENABLE(INDEXED_DATABASE)
+COMPILE_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionUnknownError, IDBDatabaseException::UnknownError);
COMPILE_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionDataError, IDBDatabaseException::DataError);
COMPILE_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionAbortError, IDBDatabaseException::AbortError);
COMPILE_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionQuotaError, IDBDatabaseException::QuotaExceededError);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes