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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h

Issue 2468273002: [DevTools] migrate Database, IndexedDB and CacheStorage to new style (Closed)
Patch Set: addressed comments & rebased Created 4 years, 1 month 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/indexeddb/InspectorIndexedDBAgent.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
index 21f5fd3ee669c4097dec02ed07b6b381d3dcec4d..1d41cd190188bd718f0c57ece0357df0fffa6917 100644
--- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
+++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
@@ -53,8 +53,8 @@ class MODULES_EXPORT InspectorIndexedDBAgent final
void didCommitLoadForLocalFrame(LocalFrame*) override;
// Called from the front-end.
- void enable(ErrorString*) override;
- void disable(ErrorString*) override;
+ Response enable() override;
+ Response disable() override;
void requestDatabaseNames(
const String& securityOrigin,
std::unique_ptr<RequestDatabaseNamesCallback>) override;
@@ -67,7 +67,7 @@ class MODULES_EXPORT InspectorIndexedDBAgent final
const String& indexName,
int skipCount,
int pageSize,
- const Maybe<protocol::IndexedDB::KeyRange>&,
+ Maybe<protocol::IndexedDB::KeyRange>,
std::unique_ptr<RequestDataCallback>) override;
void clearObjectStore(const String& securityOrigin,
const String& databaseName,

Powered by Google App Engine
This is Rietveld 408576698