blob: 52426d08c935d570a7616f1593d3376ac7c89592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!-- Copyright (c) 2011 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. -->
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection">
<head>
<meta charset="utf-8">
<title i18n-content="promoPageTitle"></title>
<script src="shared/js/local_strings.js"></script>
<script src="shared/js/cr.js"></script>
<script src="shared/js/util.js"></script>
<script src="shared/js/cr/event_target.js"></script>
<script src="chrome://syncpromo/strings.js"></script>
<!-- TODO(sail): Refactor options_page and remove this include. -->
<script src="options/options_page.js"></script>
<script src="sync_setup_overlay.js"></script>
<script src="sync_promo.js"></script>
<link rel="stylesheet" href="chrome://resources/css/button.css">
<link rel="stylesheet" href="shared/css/throbber.css">
<link rel="stylesheet" href="sync_setup_overlay.css">
<link rel="stylesheet" href="sync_promo.css">
<link rel="stylesheet" href="webui.css">
</head>
<body>
<div id="sync-promo">
<div id="sync-promo-contents">
<include src="sync_setup_overlay.html">
</div>
</div>
</body>
<script src="shared/js/i18n_template.js"></script>
<script src="chrome://resources/js/i18n_process.js"></script>
</html>
|