Chromium Code Reviews| Index: chrome/browser/resources/settings/settings_main/settings_main.html |
| diff --git a/chrome/browser/resources/settings/settings_main/settings_main.html b/chrome/browser/resources/settings/settings_main/settings_main.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e82b05982a819381086a1ac1942f3e1472856504 |
| --- /dev/null |
| +++ b/chrome/browser/resources/settings/settings_main/settings_main.html |
| @@ -0,0 +1,16 @@ |
| +<link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> |
| +<link rel="import" href="chrome://resources/polymer/core-animated-pages/core-animated-pages.html"> |
| +<link rel="import" href="chrome://resources/polymer/core-transition/core-transition.html"> |
| + |
| +<polymer-element name="cr-settings-main"> |
|
Kyle Horimoto
2015/03/09 20:59:32
Shouldn't this contain the breadcrumbs at the top
michaelpg
2015/03/09 22:24:11
At some point :-) We should nail down the design f
|
| + <template> |
| + <link rel="stylesheet" href="settings_main.css"> |
| + <div id="container"> |
| + <core-animated-pages flex id="pages" selected="{{currentPageIndex}}" |
| + transitions="cross-fade"> |
| + <cr-settings-a11y-page prefs="{{$.prefs}}"></cr-settings-a11y-page> |
| + </core-animated-pages> |
| + </div> |
| + </template> |
| + <script src="settings_main.js"></script> |
| +</polymer-element> |