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

Unified Diff: chrome/browser/resources/edit_search_engine_dialog.html

Issue 8118012: WebUI Edit Search Engine Dialog (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: changed webui class names as per precedent Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/edit_search_engine_dialog.html
diff --git a/chrome/browser/resources/edit_search_engine_dialog.html b/chrome/browser/resources/edit_search_engine_dialog.html
new file mode 100644
index 0000000000000000000000000000000000000000..f79ee09dbac6aec34b5280968cf7cf962b7099e3
--- /dev/null
+++ b/chrome/browser/resources/edit_search_engine_dialog.html
@@ -0,0 +1,43 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
+ <head>
+ <meta charset="utf-8">
+ <title></title>
+ <link rel="stylesheet" href="edit_search_engine_dialog.css">
+ <link rel="stylesheet" href="chrome://resources/css/button.css">
+ <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+ <script src="strings.js"></script>
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/cr/ui.js"></script>
+ <script src="chrome://resources/js/i18n_template.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="edit_search_engine_dialog.js"></script>
+ </head>
+
+ <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+ <table class="hfill">
+ <tr>
+ <td i18n-content="descriptionLabel"></td>
+ <td class="hfill"><input id="description-text" class="hfill"></td>
+ <td><div class="invalid" id="description-icon"></div></td>
+ </tr>
+ <tr>
+ <td i18n-content="keywordLabel"></td>
+ <td class="hfill"><input id="keyword-text" class="hfill"></td>
+ <td><div class="invalid" id="keyword-icon"></div></td>
+ </tr>
+ <tr>
+ <td i18n-content="urlLabel"></td>
+ <td class="hfill"><input id="url-text" class="hfill"></td>
+ <td><div class="invalid" id="url-icon"></div></td>
+ </tr>
+ </table>
+ <div i18n-content="urlDescriptionLabel" id="url-description"></div>
+ <div class="action-area">
+ <div class="button-strip">
+ <button id="cancel" i18n-content="cancel"></button>
+ <button id="save" i18n-content="save"></button>
+ </div>
+ </div>
+ </body>
+</html>
« no previous file with comments | « chrome/browser/resources/edit_search_engine_dialog.css ('k') | chrome/browser/resources/edit_search_engine_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698