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

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

Issue 380893005: Add an option page for searching and managing resources and permissions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/website_settings.html
diff --git a/chrome/browser/resources/options/website_settings.html b/chrome/browser/resources/options/website_settings.html
new file mode 100644
index 0000000000000000000000000000000000000000..4b3f9bd2fa7868ee88e6d8dadb1e0c24ba301e87
--- /dev/null
+++ b/chrome/browser/resources/options/website_settings.html
@@ -0,0 +1,25 @@
+<div id="website-settings-page" class="page website-settings-page" hidden>
+ <div class="close-button"></div>
+ <h1 i18n-content="websiteSettingsPage"></h1>
+ <div class="content-area website-list-content-area">
+ <div class="website-column-headers">
+ <div class="website-header-controls">
+ <select id="resourceType" class="resource-type-select">
Dan Beam 2014/07/10 02:57:24 why does this need a huge margin?
Daniel Nishi 2014/07/10 19:00:08 Bad method of alignment. Changed as per your comme
+ <option value="geolocation" i18n-content="websitesLabelGeolocation"></option>
+ <option value="media-stream" i18n-content="websitesLabelMediaStream"></option>
+ <option value="notifications" i18n-content="websitesLabelNotifications"></option>
Dan Beam 2014/07/10 02:57:23 80 col wrap
Daniel Nishi 2014/07/10 19:00:08 Done.
+ </select>
+ <input type="search" class="website-settings-search-box"
+ i18n-values="placeholder:websitesSearch" incremental>
+ </div>
+ </div>
+ <list id="origin-list" class="origin-list"></list>
+ </div>
+ <div class="action-area">
+ <div class="button-strip">
+ <button class="website-settings-overlay-confirm"
+ i18n-content="done">
Dan Beam 2014/07/10 02:57:24 fits in 1 line
Daniel Nishi 2014/07/10 19:00:08 Done.
+ </button>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698