| Index: chrome/common/extensions/docs/examples/api/browsingData/basic/popup.js
|
| diff --git a/chrome/common/extensions/docs/examples/api/browsingData/basic/popup.js b/chrome/common/extensions/docs/examples/api/browsingData/basic/popup.js
|
| index 7bf9a2b6333586086408415638f5936ba95acf3f..a86d6ace0895b46acbac5b75e3f269658d5f7dd4 100644
|
| --- a/chrome/common/extensions/docs/examples/api/browsingData/basic/popup.js
|
| +++ b/chrome/common/extensions/docs/examples/api/browsingData/basic/popup.js
|
| @@ -109,7 +109,7 @@ PopupController.prototype = {
|
| if (removal_start !== undefined) {
|
| this.button_.setAttribute('disabled', 'disabled');
|
| this.button_.innerText = 'Clearing...';
|
| - chrome.experimental.browsingData.remove(removal_start, {
|
| + chrome.browsingData.remove(removal_start, {
|
| "appcache": true,
|
| "cache": true,
|
| "cookies": true,
|
| @@ -119,6 +119,7 @@ PopupController.prototype = {
|
| "history": true,
|
| "indexedDB": true,
|
| "localStorage": true,
|
| + "originBoundCertificates": true,
|
| "pluginData": true,
|
| "passwords": true,
|
| "webSQL": true
|
|
|