Index: third_party/WebKit/Source/devtools/front_end/resources/DatabaseModel.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseModel.js b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseModel.js |
index 73ac7c55235dce7e34dbe519fb8ce41854f09176..0ecd39c3ad38c2e42d10780f245dcebb4b87a00e 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseModel.js |
+++ b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseModel.js |
@@ -56,6 +56,7 @@ WebInspector.Database.prototype = { |
return this._name; |
}, |
+ /** @param {string} x */ |
set name(x) |
{ |
this._name = x; |
@@ -67,6 +68,7 @@ WebInspector.Database.prototype = { |
return this._version; |
}, |
+ /** @param {string} x */ |
set version(x) |
{ |
this._version = x; |
@@ -78,6 +80,7 @@ WebInspector.Database.prototype = { |
return this._domain; |
}, |
+ /** @param {string} x */ |
set domain(x) |
{ |
this._domain = x; |