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

Unified Diff: chrome/common/extensions/docs/examples/api/browsingData/basic/popup.js

Issue 9424036: Move `browsingData` extension API out of experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebuilt docs. Created 8 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/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

Powered by Google App Engine
This is Rietveld 408576698