diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-22 23:38:47 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-22 23:38:47 +0000 |
commit | 88f3d9b066a57b983ebfce4f0eaa4bfe8cd0d71e (patch) | |
tree | a423efaf04f1ac597760658ec8cc4d7e50614de7 | |
parent | b2e52d1a5a76e19512cd90402a09e0ae108b4c6e (diff) | |
download | chromium_src-88f3d9b066a57b983ebfce4f0eaa4bfe8cd0d71e.zip chromium_src-88f3d9b066a57b983ebfce4f0eaa4bfe8cd0d71e.tar.gz chromium_src-88f3d9b066a57b983ebfce4f0eaa4bfe8cd0d71e.tar.bz2 |
DOMUI: Remove two unnecessary getters/setters.
This is a followup to arv's last comment in
http://codereview.chromium.org/6034005/
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6083006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70001 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/options/autofill_options_list.js | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/chrome/browser/resources/options/autofill_options_list.js b/chrome/browser/resources/options/autofill_options_list.js index 4d2dba7..10e0b647 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; - }, }; /** |