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

Unified Diff: Source/modules/webdatabase/WorkerContextWebDatabase.idl

Issue 14384004: Get rid of [Callback] extended attribute for parameters in IDL files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix whitespace issue in generated bindings Created 7 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
« no previous file with comments | « Source/modules/webdatabase/SQLTransaction.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/WorkerContextWebDatabase.idl
diff --git a/Source/modules/webdatabase/WorkerContextWebDatabase.idl b/Source/modules/webdatabase/WorkerContextWebDatabase.idl
index 2283033b49553071f99675bd7e5807f2655752fc..bcefffaa041a74900f582be66873b6a1eb5837f1 100644
--- a/Source/modules/webdatabase/WorkerContextWebDatabase.idl
+++ b/Source/modules/webdatabase/WorkerContextWebDatabase.idl
@@ -25,8 +25,8 @@
*/
partial interface WorkerContext {
- [EnabledAtRuntime=database, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, [Callback] optional DatabaseCallback creationCallback);
+ [EnabledAtRuntime=database, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
- [EnabledAtRuntime=database, RaisesException] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, [Callback] optional DatabaseCallback creationCallback);
+ [EnabledAtRuntime=database, RaisesException] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
};
« no previous file with comments | « Source/modules/webdatabase/SQLTransaction.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698