| 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
|
| index 37fcce621cb05d7fdcbcba6bb1795f0c0662f0b9..d3bd96ecfe2099f3ff6f724beab1089c11e8d8f3 100644
|
| --- 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
|
| @@ -135,6 +135,11 @@ cr.define('settings', function() {
|
| removeCookie: function(path) {},
|
|
|
| /**
|
| + * Removes all cookies.
|
| + */
|
| + removeAllCookies: function() {},
|
| +
|
| + /**
|
| * Initializes the protocol handler list. List is returned through JS calls
|
| * to setHandlersEnabled, setProtocolHandlers & setIgnoredProtocolHandlers.
|
| */
|
| @@ -232,6 +237,12 @@ cr.define('settings', function() {
|
| chrome.send('removeCookie', [path]);
|
| },
|
|
|
| + /** @override */
|
| + removeAllCookies: function() {
|
| + chrome.send('removeAllCookies');
|
| + },
|
| +
|
| +
|
| initializeProtocolHandlerList: function() {
|
| chrome.send('initializeProtocolHandlerList');
|
| },
|
|
|