Index: components/chrome_apps/webstore_widget/app/main.html |
diff --git a/components/chrome_apps/webstore_widget/app/main.html b/components/chrome_apps/webstore_widget/app/main.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f5fb68a32429dfd339719f1b871a5ae5e3fb33a7 |
--- /dev/null |
+++ b/components/chrome_apps/webstore_widget/app/main.html |
@@ -0,0 +1,29 @@ |
+<!DOCTYPE HTML> |
+<!-- |
+ -- 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. |
+ --> |
+ |
+<html i18n-values="dir:textdirection;lang:language"> |
+<head> |
+ <meta charset="utf-8"> |
+ <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"> |
+ <link rel="stylesheet" href="chrome://resources/css/dialogs.css"> |
+ <link rel="stylesheet" href="/app/main.css"> |
+ <link rel="stylesheet" href="/cws_widget/cws_widget_container.css"> |
+ <script src="/app/main.js"></script> |
+</head> |
+<body> |
+ <div class="title-area"> |
+ <span id="title" class="window-title"></span> |
+ <span class="topbutton-bar"> |
+ <button id="minimize-button" class="minimize-button" tabindex="-1" alt=""> |
+ </button> |
+ <button id="close-button" class="close-button" tabindex="-1" alt=""> |
+ </button> |
+ </span> |
+ </div> |
+ <div id="widget-container-root"></div> |
+</body> |
+</html> |