| 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 6b5032882a88b51e86126e0a04c116f3ed403d52..e7386cc310738025d7938a35d9c2b8def2e19586 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| @@ -57,6 +57,12 @@ class IDBFactory final : public GarbageCollected<IDBFactory>,
|
| const String& name,
|
| ExceptionState&);
|
|
|
| + // This is currently not exposed to the web applications and is only used by
|
| + // the DevTools.
|
| + IDBOpenDBRequest* closeConnectionsAndDeleteDatabase(ScriptState*,
|
| + const String& name,
|
| + ExceptionState&);
|
| +
|
| short cmp(ScriptState*,
|
| const ScriptValue& first,
|
| const ScriptValue& second,
|
| @@ -69,6 +75,11 @@ class IDBFactory final : public GarbageCollected<IDBFactory>,
|
| const String& name,
|
| int64_t version,
|
| ExceptionState&);
|
| +
|
| + IDBOpenDBRequest* deleteDatabaseInternal(ScriptState*,
|
| + const String& name,
|
| + ExceptionState&,
|
| + bool);
|
| };
|
|
|
| } // namespace blink
|
|
|