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

Unified Diff: chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js

Issue 1698093007: Convert SiteSettingsCategory to use the HostContentSettingsMap instead of (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 years, 10 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/settings/site_settings/site_settings_prefs_browser_proxy.js
diff --git a/chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js b/chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js
new file mode 100644
index 0000000000000000000000000000000000000000..2a8b2812d9801e5a65d0392e2dfb443c318a9ca6
--- /dev/null
+++ b/chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js
@@ -0,0 +1,41 @@
+// Copyright 2016 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 A helper object used from the "Site Settings" section to
+ * interact with the content settings prefs.
+ */
+
+cr.define('settings', function() {
+ /** @constructor */
+ function SiteSettingsPrefsBrowserProxy() {};
+
+ // The singleton instance_ is replaced with a test version of this wrapper
+ // during testing.
+ cr.addSingletonGetter(SiteSettingsPrefsBrowserProxy);
+
+ SiteSettingsPrefsBrowserProxy.prototype = {
+ /**
+ * Sets the default value for a site settings category.
+ * @param {number} contentType The category to change.
+ * @param {number} defaultValue The value to set as default.
+ */
+ setDefaultValueForContentType: function(contentType, defaultValue) {
+ chrome.send('setDefaultValueForContentType', [contentType, defaultValue]);
+ },
+
+ /**
+ * Gets the default value for a site settings category.
+ * @param {number} contentType The category to change.
+ * @return {Promise}
+ */
+ getDefaultValueForContentType: function(contentType) {
+ return cr.sendWithPromise('getDefaultValueForContentType', contentType);
+ },
+ };
+
+ return {
+ SiteSettingsPrefsBrowserProxy: SiteSettingsPrefsBrowserProxy,
+ };
+});

Powered by Google App Engine
This is Rietveld 408576698