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

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

Issue 1752213003: DevTools: migrate protocol dispatcher off RefPtr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 4 years, 10 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 f84fe5a7bae3ede505d260a5d73f71342dd5984a..ad44e292f12331ceb0c55f9c44d65b2533cd16db 100644
--- a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h
+++ b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.h
@@ -27,10 +27,10 @@ public:
DECLARE_VIRTUAL_TRACE();
- void requestCacheNames(ErrorString*, const String& in_securityOrigin, PassRefPtr<RequestCacheNamesCallback>) override;
- void requestEntries(ErrorString*, const String& in_cacheId, int in_skipCount, int in_pageSize, PassRefPtr<RequestEntriesCallback>) override;
- void deleteCache(ErrorString*, const String& in_cacheId, PassRefPtr<DeleteCacheCallback>) override;
- void deleteEntry(ErrorString*, const String& in_cacheId, const String& in_request, PassRefPtr<DeleteEntryCallback>) override;
+ void requestCacheNames(ErrorString*, const String& in_securityOrigin, PassOwnPtr<RequestCacheNamesCallback>) override;
+ void requestEntries(ErrorString*, const String& in_cacheId, int in_skipCount, int in_pageSize, PassOwnPtr<RequestEntriesCallback>) override;
+ void deleteCache(ErrorString*, const String& in_cacheId, PassOwnPtr<DeleteCacheCallback>) override;
+ void deleteEntry(ErrorString*, const String& in_cacheId, const String& in_request, PassOwnPtr<DeleteEntryCallback>) override;
private:
explicit InspectorCacheStorageAgent();

Powered by Google App Engine
This is Rietveld 408576698