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

Unified Diff: chrome/browser/resources/options/content_settings.html

Issue 7624012: First pass on intents options UI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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/options/content_settings.html
diff --git a/chrome/browser/resources/options/content_settings.html b/chrome/browser/resources/options/content_settings.html
index 12af626583a999035e1656b5d3f4b7fb4e7bf9a8..4da9f079064781f82aa049e5e4c6c66db7022616 100644
--- a/chrome/browser/resources/options/content_settings.html
+++ b/chrome/browser/resources/options/content_settings.html
@@ -211,5 +211,28 @@
i18n-content="manage_exceptions"></button>
</div>
</section>
+ <if expr="pp_ifdef('enable_web_intents')">
+ <section id="intents-section">
+ <h3 i18n-content="intents_tab_label"></h3>
James Hawkins 2011/08/17 03:18:39 intentsTabLabel Here and elsewhere.
Greg Billock 2011/08/17 18:49:50 Done. Also below.
+ <div>
+ <div class="radio">
+ <label>
+ <input type="radio" name="intents" value="allow"
+ class="intents-radio">
+ <span i18n-content="intents_allow"></span>
+ </label>
+ </div>
+ <div class="radio">
+ <label>
+ <input type="radio" name="intents" value="block"
+ class="intents-radio">
+ <span i18n-content="intents_block"></span>
+ </label>
+ </div>
+ <button id="manage-intents-button" contentType="intents"
+ i18n-content="manage_intents"></button>
+ </div>
+ </section>
+ </if>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698