| 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 35b1cc6952f2d35d5f0a911c80f43c76eab3a12f..293bdb7a73b0a3d4e8610ac980173b75228c8095 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.h
|
| @@ -46,8 +46,7 @@ class IDBFactory final : public GarbageCollected<IDBFactory>,
|
| static IDBFactory* Create() { return new IDBFactory(); }
|
| DEFINE_INLINE_VIRTUAL_TRACE() {}
|
|
|
| - IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
|
| -
|
| + // Implement the IDBFactory IDL
|
| IDBOpenDBRequest* open(ScriptState*, const String& name, ExceptionState&);
|
| IDBOpenDBRequest* open(ScriptState*,
|
| const String& name,
|
| @@ -56,18 +55,16 @@ class IDBFactory final : public GarbageCollected<IDBFactory>,
|
| IDBOpenDBRequest* deleteDatabase(ScriptState*,
|
| 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,
|
| ExceptionState&);
|
|
|
| + // These are not exposed to the web applications and only used by DevTools.
|
| + IDBRequest* GetDatabaseNames(ScriptState*);
|
| + IDBOpenDBRequest* CloseConnectionsAndDeleteDatabase(ScriptState*,
|
| + const String& name);
|
| +
|
| private:
|
| IDBFactory();
|
|
|
| @@ -78,7 +75,6 @@ class IDBFactory final : public GarbageCollected<IDBFactory>,
|
|
|
| IDBOpenDBRequest* DeleteDatabaseInternal(ScriptState*,
|
| const String& name,
|
| - ExceptionState&,
|
| bool);
|
| };
|
|
|
|
|