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

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

Issue 1706413002: Indexed DB: Rename "int version" to "version" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 10 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/devtools/front_end/resources/IndexedDBViews.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
index c607d8a6c6a6fda11b889a108330470e02403bc3..7ae1cc86d22a76917385e1e1542554f57d2076e3 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
@@ -54,13 +54,9 @@ WebInspector.IDBDatabaseView = function(database)
this._nameTreeElement.selectable = false;
this._headersTreeOutline.appendChild(this._nameTreeElement);
- this._intVersionTreeElement = new TreeElement();
- this._intVersionTreeElement.selectable = false;
- this._headersTreeOutline.appendChild(this._intVersionTreeElement);
-
- this._stringVersionTreeElement = new TreeElement();
- this._stringVersionTreeElement.selectable = false;
- this._headersTreeOutline.appendChild(this._stringVersionTreeElement);
+ this._versionTreeElement = new TreeElement();
+ this._versionTreeElement.selectable = false;
+ this._headersTreeOutline.appendChild(this._versionTreeElement);
this.update(database);
}
@@ -91,8 +87,7 @@ WebInspector.IDBDatabaseView.prototype = {
{
this._securityOriginTreeElement.title = this._formatHeader(WebInspector.UIString("Security origin"), this._database.databaseId.securityOrigin);
this._nameTreeElement.title = this._formatHeader(WebInspector.UIString("Name"), this._database.databaseId.name);
- this._stringVersionTreeElement.title = this._formatHeader(WebInspector.UIString("String Version"), this._database.version);
- this._intVersionTreeElement.title = this._formatHeader(WebInspector.UIString("Integer Version"), this._database.intVersion);
+ this._versionTreeElement.title = this._formatHeader(WebInspector.UIString("Version"), this._database.version);
},
/**

Powered by Google App Engine
This is Rietveld 408576698