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

Unified Diff: Source/modules/cachestorage/CacheStorageError.cpp

Issue 1234603003: CallbackPromiseAdapter types should be more compatible with WebCallbacks (1/3). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: retry! Created 5 years, 4 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
Index: Source/modules/cachestorage/CacheStorageError.cpp
diff --git a/Source/modules/cachestorage/CacheStorageError.cpp b/Source/modules/cachestorage/CacheStorageError.cpp
index 2d3ba8a5ac448f80288b1cb481c2f7be7fa07e03..a0a581b9a3729fbe589f50cd630ada8bdd186adb 100644
--- a/Source/modules/cachestorage/CacheStorageError.cpp
+++ b/Source/modules/cachestorage/CacheStorageError.cpp
@@ -12,12 +12,12 @@
namespace blink {
-DOMException* CacheStorageError::take(ScriptPromiseResolver*, PassOwnPtr<WebType> webError)
+DOMException* CacheStorageError::take(ScriptPromiseResolver*, PassOwnPtr<WebServiceWorkerCacheError> webError)
{
return CacheStorageError::createException(*webError);
}
-DOMException* CacheStorageError::createException(WebType webError)
+DOMException* CacheStorageError::createException(WebServiceWorkerCacheError webError)
{
switch (webError) {
case WebServiceWorkerCacheErrorNotImplemented:
« no previous file with comments | « Source/modules/cachestorage/CacheStorageError.h ('k') | Source/modules/cachestorage/InspectorCacheStorageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698