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

Unified Diff: ui/oobe/resources/oobe-element.html

Issue 941973003: New OOBE implementation skeleton using WUG toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No explicit, gn format. Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/oobe/oobe_resources.grd ('k') | ui/oobe/resources/oobe-element.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/oobe/resources/oobe-element.html
diff --git a/ui/oobe/resources/oobe-element.html b/ui/oobe/resources/oobe-element.html
new file mode 100644
index 0000000000000000000000000000000000000000..f6c342a3680fdbd74b83dd05c9cca8151adbce9e
--- /dev/null
+++ b/ui/oobe/resources/oobe-element.html
@@ -0,0 +1,25 @@
+<!-- Copyright 2015 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+
+<link rel="import" href="chrome://resources/polymer/paper-button/paper-button.html">
+<link rel="import" href="ui/oobe/declarations/oobe-view.html">
+
+<polymer-element name="oobe-element" extends="oobe-view">
+ <template>
+ <style>
+ paper-button {
+ background-color: #00bcd4;
+ color: #fff;
+ box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2);
+ text-transform: none;
+ font-weight: bold;
+ }
+ </style>
+ <paper-button on-tap="{{fireEvent}}" event="buttonClicked">
+ Old OOBE
+ </paper-button>
+ </template>
+</polymer-element>
+
+<script src="oobe-element.js"></script>
« no previous file with comments | « ui/oobe/oobe_resources.grd ('k') | ui/oobe/resources/oobe-element.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698