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

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: Add comments, fix CSS, etc. 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 ea1fb117f6e515ba506affcc3924377cd8bd1edc..ee6768ba6379dd268fef93cc821e03bb78bb5453 100644
--- a/chrome/browser/resources/options/content_settings.html
+++ b/chrome/browser/resources/options/content_settings.html
@@ -237,5 +237,28 @@
i18n-content="manage_exceptions"></button>
</div>
</section>
+ <if expr="pp_ifdef('enable_web_intents')">
+ <section id="intents-section">
+ <h3 i18n-content="intentsTabLabel"></h3>
+ <div>
+ <div class="radio">
+ <label>
+ <input type="radio" name="intents" value="allow"
+ class="intents-radio">
+ <span i18n-content="intentsAllow"></span>
+ </label>
+ </div>
+ <div class="radio">
+ <label>
+ <input type="radio" name="intents" value="block"
+ class="intents-radio">
+ <span i18n-content="intentsBlock"></span>
+ </label>
+ </div>
+ <button id="manage-intents-button" contentType="intents"
+ i18n-content="manageIntents"></button>
+ </div>
+ </section>
+ </if>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698