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 bf688dc4371d145cb161d4439fac7daccbd21521..114788bd7993d101419f103e784b37a5fb261f62 100644 |
--- a/third_party/WebKit/Source/modules/cachestorage/CacheStorageError.cpp |
+++ b/third_party/WebKit/Source/modules/cachestorage/CacheStorageError.cpp |
@@ -22,8 +22,6 @@ DOMException* CacheStorageError::createException(WebServiceWorkerCacheError webE |
return DOMException::create(InvalidAccessError, "Entry already exists."); |
case WebServiceWorkerCacheErrorQuotaExceeded: |
return DOMException::create(QuotaExceededError, "Quota exceeded."); |
- case WebServiceWorkerCacheErrorCacheNameNotFound: |
- return DOMException::create(NotFoundError, "Cache name was not found."); |
default: |
ASSERT_NOT_REACHED(); |
return DOMException::create(NotSupportedError, "Unknown error."); |