Source/WebKit/chromium/ChangeLog

 12012-12-03 Erik Arvidsson <arv@chromium.org>
 2
 3 [Chromium] Fix issue with hard coded error codes in quota error
 4 https://bugs.webkit.org/show_bug.cgi?id=103892
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Chromium currently hard codes the enum values for QuotaStatusCode. To fix
 9 this we need to do a few iteration of changes. This is the first step and
 10 it exposes the enums that Chromium depends on.
 11
 12 * public/WebStorageQuotaError.h:
 13
1142012-12-03 Tommy Widenflycht <tommyw@google.com>
215
316 Speech Recognition API: Update SpeechRecognitionEvent to match the specification

Source/WebKit/chromium/public/WebStorageQuotaError.h

@@namespace WebKit {
3636// The error code used for WebStorageQuota.
3737enum WebStorageQuotaError {
3838 WebStorageQuotaErrorNotSupported = 9,
 39 WebStorageQuotaErrorInvalidModification = 13,
 40 WebStorageQuotaErrorInvalidAccess = 15,
3941 WebStorageQuotaErrorAbort = 20,
4042};
4143