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

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

Issue 2008183002: DevTools: generate frontend and backend interfaces under domains. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed Created 4 years, 7 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.cpp
diff --git a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
index 2518338fdf186b7f2227733b48e1cbb226de504d..6c9bc26b3d79a5d96baab18362ee2c250ad8a837 100644
--- a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
+++ b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
@@ -34,11 +34,10 @@ using blink::protocol::Array;
using blink::protocol::CacheStorage::Cache;
using blink::protocol::CacheStorage::DataEntry;
-typedef blink::protocol::Backend::CacheStorage::DeleteCacheCallback DeleteCacheCallback;
-typedef blink::protocol::Backend::CacheStorage::DeleteEntryCallback DeleteEntryCallback;
-typedef blink::protocol::Backend::CacheStorage::RequestCacheNamesCallback RequestCacheNamesCallback;
-typedef blink::protocol::Backend::CacheStorage::RequestEntriesCallback RequestEntriesCallback;
-typedef blink::protocol::Dispatcher::CallbackBase RequestCallback;
+typedef blink::protocol::CacheStorage::Backend::DeleteCacheCallback DeleteCacheCallback;
+typedef blink::protocol::CacheStorage::Backend::DeleteEntryCallback DeleteEntryCallback;
+typedef blink::protocol::CacheStorage::Backend::RequestCacheNamesCallback RequestCacheNamesCallback;
+typedef blink::protocol::CacheStorage::Backend::RequestEntriesCallback RequestEntriesCallback;
typedef blink::WebServiceWorkerCache::BatchOperation BatchOperation;
namespace blink {
@@ -400,7 +399,7 @@ private:
} // namespace
InspectorCacheStorageAgent::InspectorCacheStorageAgent()
- : InspectorBaseAgent<InspectorCacheStorageAgent, protocol::Frontend::CacheStorage>("CacheStorage")
+ : InspectorBaseAgent<InspectorCacheStorageAgent, protocol::CacheStorage::Frontend>("CacheStorage")
{
}

Powered by Google App Engine
This is Rietveld 408576698