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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.js

Issue 2702523005: MD Settings: long dialog body should have overscroll line. (Closed)
Patch Set: format and annotation Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 'password-edit-dialog' is the dialog that allows showing a 6 * @fileoverview 'password-edit-dialog' is the dialog that allows showing a
7 * saved password. 7 * saved password.
8 */ 8 */
9 (function() { 9 (function() {
10 'use strict'; 10 'use strict';
11 11
12 Polymer({ 12 Polymer({
13 is: 'settings-address-edit-dialog', 13 is: 'settings-address-edit-dialog',
14 14
15 behaviors: [ 15 behaviors: [I18nBehavior],
16 I18nBehavior,
17 ],
18 16
19 properties: { 17 properties: {
20 /** @type {chrome.autofillPrivate.AddressEntry} */ 18 /** @type {chrome.autofillPrivate.AddressEntry} */
21 address: Object, 19 address: Object,
22 20
23 /** @private */ 21 /** @private */
24 title_: String, 22 title_: String,
25 23
26 /** @private {!Array<!chrome.autofillPrivate.CountryEntry>} */ 24 /** @private {!Array<!chrome.autofillPrivate.CountryEntry>} */
27 countries_: Array, 25 countries_: Array,
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 }); 336 });
339 }, 337 },
340 }; 338 };
341 339
342 return { 340 return {
343 AddressComponentUI: AddressComponentUI, 341 AddressComponentUI: AddressComponentUI,
344 CountryDetailManager: CountryDetailManager, 342 CountryDetailManager: CountryDetailManager,
345 CountryDetailManagerImpl: CountryDetailManagerImpl, 343 CountryDetailManagerImpl: CountryDetailManagerImpl,
346 }; 344 };
347 }); 345 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698