Chromium Code Reviews

Unified Diff: chrome/browser/resources/options/autofill_options_list.js

Issue 6083006: DOMUI: Remove two unnecessary getters/setters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/autofill_options_list.js
diff --git a/chrome/browser/resources/options/autofill_options_list.js b/chrome/browser/resources/options/autofill_options_list.js
index 4d2dba79265683903b1d0d7ffa699632eb85bdc8..10e0b64729358601857af47053c13eeae6e79788 100644
--- a/chrome/browser/resources/options/autofill_options_list.js
+++ b/chrome/browser/resources/options/autofill_options_list.js
@@ -36,28 +36,6 @@ cr.define('options.autoFillOptions', function() {
label.textContent = this.label;
this.contentElement.appendChild(label);
},
-
- /**
- * Get and set the GUID for the entry.
- * @type {string}
- */
- get guid() {
- return this.guid;
- },
- set guid(guid) {
- this.guid = guid;
- },
-
- /**
- * Get and set the label for the entry.
- * @type {string}
- */
- get label() {
- return this.label;
- },
- set label(label) {
- this.label = label;
- },
};
/**
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine