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

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

Issue 2837613003: IndexedDB: Add [SameObject] / [NewObject] annotations per spec (Closed)
Patch Set: Remove extra NewObject annotations Created 3 years, 8 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.idl
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl
index 7ba7cfc3a8a223e2061b1f83a78cd50e951d7203..d220022b96c81de5636c50a9668f7b191f2b33c1 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.idl
@@ -30,8 +30,9 @@
] interface IDBFactory {
[CallWith=ScriptState, ImplementedAs=getDatabaseNames, RaisesException, DeprecateAs=V8IDBFactory_WebkitGetDatabaseNames_Method] IDBRequest webkitGetDatabaseNames();
- [CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
- [CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
+ [NewObject, CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name,
+ [EnforceRange] optional unsigned long long version);
+ [NewObject, CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
[CallWith=ScriptState, RaisesException] short cmp(any first, any second);
};
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl ('k') | third_party/WebKit/Source/modules/indexeddb/IDBIndex.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698