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

Unified Diff: chrome/common/extensions/api/activity_log_private.json

Issue 154053004: Introducing the activityLogPrivate.deleteActivities() API call. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebasing Created 6 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/api/activity_log_private.json
diff --git a/chrome/common/extensions/api/activity_log_private.json b/chrome/common/extensions/api/activity_log_private.json
index 8fb9b86ff722215906168c25593ac009a5050e1c..39b30868825ecbbac09d4c2a9d0c8e12a8a2a2f5 100644
--- a/chrome/common/extensions/api/activity_log_private.json
+++ b/chrome/common/extensions/api/activity_log_private.json
@@ -80,6 +80,19 @@
]
},
{
+ "name": "deleteActivities",
+ "type": "function",
+ "description": "Deletes activities in the ActivityLog database specified in the array of activity IDs.",
+ "parameters": [
+ {
+ "name": "activityIds",
+ "type": "array",
+ "items": { "type": "string" },
+ "description": "Erases only the activities which IDs are listed in the array."
+ }
+ ]
+ },
+ {
"name": "deleteDatabase",
"type": "function",
"description": "Deletes the entire ActivityLog database.",

Powered by Google App Engine
This is Rietveld 408576698