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

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/main.html

Issue 10453032: Add wallpaper experimental api framework and add a simple category list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "Flackr's review" Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <!-- 3 <!--
4 ------ 4 ------
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. 5 Copyright (c) 2012 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 --> 9 -->
10 <head> 10 <head>
11 <title>Placeholder for Wallpaper Manager Main page</title> 11 <title>Placeholder for Wallpaper Manager Main page</title>
12 <link rel="stylesheet" href="css/wallpaper_manager.css">
13 <script src="js/main_scripts.js"></script>
14 <if expr="0">
15 <!-- This file has not been flattened, load individual scripts.
16 Keep the list in sync with js/main_scripts.js. -->
17 <script src="../../shared/js/local_strings.js"></script>
18 <script src="js/wallpaper_manager.js"></script>
19 <script src="js/main.js"></script>
20 </if>
12 </head> 21 </head>
13 <body> 22 <body>
14 <h1>Wallpaper Manager</h1> 23 <div class="dialog-container">
15 <p>Coming soon.</p> 24 <div class="dialog-sidebar">
25 <ul id="categories-list"></ul>
26 </div>
27 <div class="wallpaper-grid-container">
28 </div>
29 </div>
16 </body> 30 </body>
17 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698