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

Side by Side Diff: chrome/browser/resources/bookmark_manager/bookmark_all_tabs.html

Issue 8497008: Implement Bookmark All Tabs Dialog with WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix Created 9 years, 1 month 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
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection">
3 <!--
4
5 Copyright (c) 2011 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file.
8
9 -->
10 <head>
11 <meta name="google" value="notranslate">
12 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
13 TODO(abarth): Change the name to Content-Security-Policy once CSP is done.
14 -->
15 <meta http-equiv="X-WebKit-CSP"
16 content="object-src 'none';
17 script-src chrome://resources
18 chrome-extension://eemcgdkfndhakfknompkggombfjjjeno
19 'self'">
20 <title i18n-content="title"></title>
21
22 <link rel="stylesheet" href="../shared/css/tree.css">
23 <link rel="stylesheet" href="../shared/css/button.css">
24 <link rel="stylesheet" href="../shared/css/chrome_shared.css">
25 <link rel="stylesheet" href="css/bookmark_all_tabs.css">
26
27 <script src="chrome://resources/css/tree.css.js"></script>
28 <script src="chrome://resources/js/event_tracker.js"></script>
29
30 <script src="chrome://resources/js/cr.js"></script>
31 <script src="chrome://resources/js/cr/event_target.js"></script>
32 <script src="chrome://resources/js/cr/link_controller.js"></script>
33 <script src="chrome://resources/js/cr/ui.js"></script>
34 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
35 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
36 <script src="chrome://resources/js/cr/ui/tree.js"></script>
37
38 <script src="chrome://resources/js/util.js"></script>
39 <script src="chrome://resources/js/local_strings.js"></script>
40 <script src="chrome://resources/js/i18n_template.js"></script>
41
42 <script src="js/bmm.js"></script>
43 <script src="js/bmm/bookmark_tree.js"></script>
44 </head>
45 <body class="page" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fon tsize">
46
47 <div class="dialog-body">
48 <div>
49 <label id="name-form">
50 <span i18n-content="name_input_placeholder">Name</span>
51 <span>: </span>
52 <input id="new-name" type="text" i18n-values=".placeholder:new_folder_name " />
53 </label>
54 </div>
55 <div id="tree-container">
56 <tree id="tree" tabindex=2 role="tree"></tree>
57 </div>
58 <div id="buttons">
59 <button id="new-folder" i18n-content="new_folder">New Folder</button>
60 <button id="cancel" i18n-content="cancel">Cancel</button>
61 <button id="save" i18n-content="save">Save</button>
62 </div>
63 </div>
64
65 <script src="js/bookmark_all_tabs.js"></script>
66 </body>
67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698