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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/bookmark_manager/bookmark_all_tabs.html
diff --git a/chrome/browser/resources/bookmark_manager/bookmark_all_tabs.html b/chrome/browser/resources/bookmark_manager/bookmark_all_tabs.html
new file mode 100644
index 0000000000000000000000000000000000000000..be6c476fa7cac92709ef0252e01cbcea3cfd5d68
--- /dev/null
+++ b/chrome/browser/resources/bookmark_manager/bookmark_all_tabs.html
@@ -0,0 +1,67 @@
+<!DOCTYPE html>
+<html i18n-values="dir:textdirection">
+<!--
+
+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.
+
+-->
+<head>
+<meta name="google" value="notranslate">
+<!-- X-WebKit-CSP is our development name for Content-Security-Policy.
+ TODO(abarth): Change the name to Content-Security-Policy once CSP is done.
+ -->
+<meta http-equiv="X-WebKit-CSP"
+ content="object-src 'none';
+ script-src chrome://resources
+ chrome-extension://eemcgdkfndhakfknompkggombfjjjeno
+ 'self'">
+<title i18n-content="title"></title>
+
+<link rel="stylesheet" href="../shared/css/tree.css">
+<link rel="stylesheet" href="../shared/css/button.css">
+<link rel="stylesheet" href="../shared/css/chrome_shared.css">
+<link rel="stylesheet" href="css/bookmark_all_tabs.css">
+
+<script src="chrome://resources/css/tree.css.js"></script>
+<script src="chrome://resources/js/event_tracker.js"></script>
+
+<script src="chrome://resources/js/cr.js"></script>
+<script src="chrome://resources/js/cr/event_target.js"></script>
+<script src="chrome://resources/js/cr/link_controller.js"></script>
+<script src="chrome://resources/js/cr/ui.js"></script>
+<script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
+<script src="chrome://resources/js/cr/ui/position_util.js"></script>
+<script src="chrome://resources/js/cr/ui/tree.js"></script>
+
+<script src="chrome://resources/js/util.js"></script>
+<script src="chrome://resources/js/local_strings.js"></script>
+<script src="chrome://resources/js/i18n_template.js"></script>
+
+<script src="js/bmm.js"></script>
+<script src="js/bmm/bookmark_tree.js"></script>
+</head>
+<body class="page" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+
+<div class="dialog-body">
+ <div>
+ <label id="name-form">
+ <span i18n-content="name_input_placeholder">Name</span>
+ <span>: </span>
+ <input id="new-name" type="text" i18n-values=".placeholder:new_folder_name" />
+ </label>
+ </div>
+ <div id="tree-container">
+ <tree id="tree" tabindex=2 role="tree"></tree>
+ </div>
+ <div id="buttons">
+ <button id="new-folder" i18n-content="new_folder">New Folder</button>
+ <button id="cancel" i18n-content="cancel">Cancel</button>
+ <button id="save" i18n-content="save">Save</button>
+ </div>
+</div>
+
+<script src="js/bookmark_all_tabs.js"></script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698