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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.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/webdatabase/InspectorDatabaseAgent.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
index b9ac03150c3cb4d0afde28afc86369ffb73bf5e1..20ee21f3b1c776d4bcc823f23b8ea2b740e0aeac 100644
--- a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
+++ b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
@@ -54,14 +54,13 @@ class MODULES_EXPORT InspectorDatabaseAgent final
~InspectorDatabaseAgent() override;
DECLARE_VIRTUAL_TRACE();
- void disable(ErrorString*) override;
+ Response disable() override;
void restore() override;
void didCommitLoadForLocalFrame(LocalFrame*) override;
// Called from the front-end.
- void enable(ErrorString*) override;
- void getDatabaseTableNames(
- ErrorString*,
+ Response enable() override;
+ Response getDatabaseTableNames(
const String& databaseId,
std::unique_ptr<protocol::Array<String>>* names) override;
void executeSQL(const String& databaseId,

Powered by Google App Engine
This is Rietveld 408576698