OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="chrome://resources/html/action_link.html"> | 2 <link rel="import" href="chrome://resources/html/action_link.html"> |
3 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 3 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 4 <link rel="import" href="chrome://resources/html/assert.html"> |
| 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
6 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 8 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
7 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h
tml"> | 9 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h
tml"> |
8 <link rel="import" href="../controls/extension_controlled_indicator.html"> | 10 <link rel="import" href="../controls/extension_controlled_indicator.html"> |
9 <link rel="import" href="../settings_shared_css.html"> | 11 <link rel="import" href="../settings_shared_css.html"> |
10 <link rel="import" href="startup_url_dialog.html"> | 12 <link rel="import" href="startup_url_dialog.html"> |
11 <link rel="import" href="startup_url_entry.html"> | 13 <link rel="import" href="startup_url_entry.html"> |
12 <link rel="import" href="startup_urls_page_browser_proxy.html"> | 14 <link rel="import" href="startup_urls_page_browser_proxy.html"> |
13 | 15 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 </template> | 66 </template> |
65 </div> | 67 </div> |
66 <template is="dom-if" if="[[showStartupUrlDialog_]]" restamp> | 68 <template is="dom-if" if="[[showStartupUrlDialog_]]" restamp> |
67 <settings-startup-url-dialog model="[[startupUrlDialogModel_]]" | 69 <settings-startup-url-dialog model="[[startupUrlDialogModel_]]" |
68 on-close="destroyUrlDialog_"> | 70 on-close="destroyUrlDialog_"> |
69 </settings-startup-url-dialog> | 71 </settings-startup-url-dialog> |
70 </template> | 72 </template> |
71 </template> | 73 </template> |
72 <script src="startup_urls_page.js"></script> | 74 <script src="startup_urls_page.js"></script> |
73 </dom-module> | 75 </dom-module> |
OLD | NEW |