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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/DatabaseModel.js

Issue 2466123002: DevTools: reformat front-end code to match chromium style. (Closed)
Patch Set: Created 4 years, 1 month 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/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;

Powered by Google App Engine
This is Rietveld 408576698