| Index: third_party/WebKit/Source/modules/cachestorage/CacheStorageError.cpp
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheStorageError.cpp b/third_party/WebKit/Source/modules/cachestorage/CacheStorageError.cpp
|
| index b91682ba98ff7fdfd38595c3c30529b0150fdd18..114788bd7993d101419f103e784b37a5fb261f62 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/CacheStorageError.cpp
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/CacheStorageError.cpp
|
| @@ -20,6 +20,8 @@ DOMException* CacheStorageError::createException(WebServiceWorkerCacheError webE
|
| return DOMException::create(NotFoundError, "Entry was not found.");
|
| case WebServiceWorkerCacheErrorExists:
|
| return DOMException::create(InvalidAccessError, "Entry already exists.");
|
| + case WebServiceWorkerCacheErrorQuotaExceeded:
|
| + return DOMException::create(QuotaExceededError, "Quota exceeded.");
|
| default:
|
| ASSERT_NOT_REACHED();
|
| return DOMException::create(NotSupportedError, "Unknown error.");
|
|
|