Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBFactory.h

Issue 2818173003: Indexed DB: Remove nonstandard IDBFactory.webkitGetDatabaseNames() (Closed)
Patch Set: Remove content_browsertest for wGDN Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/Deprecation.cpp ('k') | third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698