From 88f3d9b066a57b983ebfce4f0eaa4bfe8cd0d71e Mon Sep 17 00:00:00 2001 From: "jhawkins@chromium.org" Date: Wed, 22 Dec 2010 23:38:47 +0000 Subject: 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 --- .../resources/options/autofill_options_list.js | 22 ---------------------- 1 file changed, 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; - }, }; /** -- cgit v1.1