Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / login / gaia_header.html
blobe75ad5b0904ba37feef654192b33ab559f8de4d6
1 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. -->
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
8 <!--
9 Blue header for New Gaia UI, contains blue avatar logo and user email.
11 Example:
12 <gaia-header email="user@example.com">
13 </gaia-header>
15 Attributes:
16 'email' - displayed email.
17 -->
18 <dom-module name="gaia-header">
19 <link rel="stylesheet" href="gaia_header.css">
21 <template>
22 <img src="chrome://theme/IDR_LOGO_AVATAR_CIRCLE_BLUE_COLOR" alt
23 class="self-start">
24 <div id="email"><span>[[email]]<span></div>
25 </template>
26 </dom-module>