| 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 fed81969c588978de899c07ec7ecb9d5e73a5079..2c63a47ca85b6c0e08b2fe132ee7737d38f40b8a 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.h
|
| @@ -61,8 +61,8 @@ public:
|
|
|
| // Called from the front-end.
|
| void enable(ErrorString*) override;
|
| - void getDatabaseTableNames(ErrorString*, const String& databaseId, OwnPtr<protocol::Array<String>>* names) override;
|
| - void executeSQL(ErrorString*, const String& databaseId, const String& query, PassOwnPtr<ExecuteSQLCallback>) override;
|
| + void getDatabaseTableNames(ErrorString*, const String& databaseId, std::unique_ptr<protocol::Array<String>>* names) override;
|
| + void executeSQL(ErrorString*, const String& databaseId, const String& query, std::unique_ptr<ExecuteSQLCallback>) override;
|
|
|
| void didOpenDatabase(blink::Database*, const String& domain, const String& name, const String& version);
|
| private:
|
|
|