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

Unified Diff: third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h

Issue 2203543002: [DevTools] Dont pass errorString to async protocol methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 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: third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h
diff --git a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h
index 868a0b02f8911ca6b877cb739b4fe43c5b3539c8..bc6fb16e0827ce363e16388d854bd68762d46ff0 100644
--- a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h
+++ b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h
@@ -26,10 +26,10 @@ public:
DECLARE_VIRTUAL_TRACE();
- void requestCacheNames(ErrorString*, const String& in_securityOrigin, std::unique_ptr<RequestCacheNamesCallback>) override;
- void requestEntries(ErrorString*, const String& in_cacheId, int in_skipCount, int in_pageSize, std::unique_ptr<RequestEntriesCallback>) override;
- void deleteCache(ErrorString*, const String& in_cacheId, std::unique_ptr<DeleteCacheCallback>) override;
- void deleteEntry(ErrorString*, const String& in_cacheId, const String& in_request, std::unique_ptr<DeleteEntryCallback>) override;
+ void requestCacheNames(const String& securityOrigin, std::unique_ptr<RequestCacheNamesCallback>) override;
+ void requestEntries(const String& cacheId, int skipCount, int pageSize, std::unique_ptr<RequestEntriesCallback>) override;
+ void deleteCache(const String& cacheId, std::unique_ptr<DeleteCacheCallback>) override;
+ void deleteEntry(const String& cacheId, const String& request, std::unique_ptr<DeleteEntryCallback>) override;
private:
explicit InspectorCacheStorageAgent();

Powered by Google App Engine
This is Rietveld 408576698