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

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

Issue 2900863002: IndexedDB: Restore access checks in inspector-only IDBFactory methods (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698