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

Unified Diff: Source/core/dom/DOMException.cpp

Issue 258203003: [webcrypto] Define the DOMException OperationError. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase, just in case... Created 6 years, 8 months 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 | « LayoutTests/crypto/aes-cbc-decrypt-failure-expected.txt ('k') | Source/core/dom/ExceptionCode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMException.cpp
diff --git a/Source/core/dom/DOMException.cpp b/Source/core/dom/DOMException.cpp
index 5db0d351315ac92c9998f27283bd0e7201fc8246..5c63ee04b84084327ed8d0a6c01ede0ac6b22448 100644
--- a/Source/core/dom/DOMException.cpp
+++ b/Source/core/dom/DOMException.cpp
@@ -76,6 +76,9 @@ static const struct CoreException {
// SQL
{ "DatabaseError", "The operation failed for some reason related to the database.", 0 },
+
+ // Web Crypto
+ { "OperationError", "The operation failed for an operation-specific reason", 0 },
};
static const CoreException* getErrorEntry(ExceptionCode ec)
« no previous file with comments | « LayoutTests/crypto/aes-cbc-decrypt-failure-expected.txt ('k') | Source/core/dom/ExceptionCode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698