| Index: third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| index 293bdb7a73b0a3d4e8610ac980173b75228c8095..48d2e501bd97c3197e7f96f556ca310629fe7983 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| @@ -61,9 +61,10 @@ class IDBFactory final : public GarbageCollected<IDBFactory>,
|
| ExceptionState&);
|
|
|
| // These are not exposed to the web applications and only used by DevTools.
|
| - IDBRequest* GetDatabaseNames(ScriptState*);
|
| + IDBRequest* GetDatabaseNames(ScriptState*, ExceptionState&);
|
| IDBOpenDBRequest* CloseConnectionsAndDeleteDatabase(ScriptState*,
|
| - const String& name);
|
| + const String& name,
|
| + ExceptionState&);
|
|
|
| private:
|
| IDBFactory();
|
| @@ -75,6 +76,7 @@ class IDBFactory final : public GarbageCollected<IDBFactory>,
|
|
|
| IDBOpenDBRequest* DeleteDatabaseInternal(ScriptState*,
|
| const String& name,
|
| + ExceptionState&,
|
| bool);
|
| };
|
|
|
|
|