| 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, | 
|  |