| Index: third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp | 
| diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp | 
| index 2abd491b89c71d0103046243b240ce6989cf2a77..ec8460cdf35ef6adfb7aca6dfbaa9593b0e5cf41 100644 | 
| --- a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp | 
| +++ b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp | 
| @@ -140,7 +140,7 @@ public: | 
| { | 
| if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()->activeDOMObjectsAreStopped()) | 
| return; | 
| -        if (reason == WebServiceWorkerCacheErrorNotFound) | 
| +        if (reason == WebServiceWorkerCacheErrorNotFound || reason == WebServiceWorkerCacheErrorCacheNameNotFound) | 
| m_resolver->resolve(); | 
| else | 
| m_resolver->reject(CacheStorageError::createException(reason)); | 
|  |