Index: chrome/browser/resources/settings/site_settings/category_setting_exceptions.js |
diff --git a/chrome/browser/resources/settings/site_settings/category_setting_exceptions.js b/chrome/browser/resources/settings/site_settings/category_setting_exceptions.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4c53c8c17f8fc2f408dd5685b20810212e344200 |
--- /dev/null |
+++ b/chrome/browser/resources/settings/site_settings/category_setting_exceptions.js |
@@ -0,0 +1,27 @@ |
+// Copyright 2015 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. |
+ |
+/** |
+ * @fileoverview |
+ * 'category-setting-exceptions' is the polymer element for showing a certain |
+ * category of exceptions under Site Settings. |
+ */ |
+Polymer({ |
+ is: 'category-setting-exceptions', |
+ |
+ properties: { |
+ /** |
+ * The site that is passed down to the site list. |
+ * @type {SiteException} |
+ */ |
+ selectedSite: { |
tommycli
2016/12/15 21:36:38
As stated before this is probably not needed anymo
dschuyler
2016/12/16 20:39:45
Done.
|
+ type: Object, |
+ notify: true, |
+ }, |
+ }, |
+ |
+ ready: function() { |
+ this.PermissionValues = settings.PermissionValues; |
tommycli
2016/12/15 21:36:38
This can probably be in created (in case it's need
dschuyler
2016/12/16 20:39:45
That doesn't work. I tried it before putting this
|
+ }, |
+}); |