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

Unified Diff: Source/devtools/front_end/sdk/IndexedDBModel.js

Issue 301163005: DevTools: [JSDoc] Avoid partial arg list annotations in code except "profiler" module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 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 | « Source/devtools/front_end/sdk/FileUtils.js ('k') | Source/devtools/front_end/sdk/InspectorBackend.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/IndexedDBModel.js
diff --git a/Source/devtools/front_end/sdk/IndexedDBModel.js b/Source/devtools/front_end/sdk/IndexedDBModel.js
index c1663df3762536deabc6f9189de8b04a0a15899f..3e8f2654ae736706617a193adfd6e721e1c28728 100644
--- a/Source/devtools/front_end/sdk/IndexedDBModel.js
+++ b/Source/devtools/front_end/sdk/IndexedDBModel.js
@@ -434,6 +434,7 @@ WebInspector.IndexedDBModel.DatabaseId.prototype = {
* @constructor
* @param {!WebInspector.IndexedDBModel.DatabaseId} databaseId
* @param {string} version
+ * @param {number} intVersion
*/
WebInspector.IndexedDBModel.Database = function(databaseId, version, intVersion)
{
@@ -447,6 +448,7 @@ WebInspector.IndexedDBModel.Database = function(databaseId, version, intVersion)
* @constructor
* @param {string} name
* @param {*} keyPath
+ * @param {boolean} autoIncrement
*/
WebInspector.IndexedDBModel.ObjectStore = function(name, keyPath, autoIncrement)
{
@@ -470,6 +472,8 @@ WebInspector.IndexedDBModel.ObjectStore.prototype = {
* @constructor
* @param {string} name
* @param {*} keyPath
+ * @param {boolean} unique
+ * @param {boolean} multiEntry
*/
WebInspector.IndexedDBModel.Index = function(name, keyPath, unique, multiEntry)
{
« no previous file with comments | « Source/devtools/front_end/sdk/FileUtils.js ('k') | Source/devtools/front_end/sdk/InspectorBackend.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698