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

Side by Side Diff: chrome/common/extensions/api/activity_log_private.json

Issue 23980002: Activity Log: allow searching by day (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/extensions/api/activity_log_private/activity_log_private_api.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 { 6 {
7 "namespace": "activityLogPrivate", 7 "namespace": "activityLogPrivate",
8 "description": "none", 8 "description": "none",
9 "types": [ 9 "types": [
10 { 10 {
(...skipping 15 matching lines...) Expand all
26 }, 26 },
27 { 27 {
28 "id": "Filter", 28 "id": "Filter",
29 "type": "object", 29 "type": "object",
30 "description": "Used to specify values for a lookup.", 30 "description": "Used to specify values for a lookup.",
31 "properties": { 31 "properties": {
32 "extensionId": {"type": "string", "optional": true, "description": "Ex act match"}, 32 "extensionId": {"type": "string", "optional": true, "description": "Ex act match"},
33 "activityType": {"type": "string", "enum": ["api_call", "api_event", " content_script", "dom_access", "dom_event", "web_request", "any"], "description" : "Exact match or any"}, 33 "activityType": {"type": "string", "enum": ["api_call", "api_event", " content_script", "dom_access", "dom_event", "web_request", "any"], "description" : "Exact match or any"},
34 "apiCall": {"type": "string", "optional": true, "description": "Exact match"}, 34 "apiCall": {"type": "string", "optional": true, "description": "Exact match"},
35 "pageUrl": {"type": "string", "optional": true, "description": "Treate d as a prefix"}, 35 "pageUrl": {"type": "string", "optional": true, "description": "Treate d as a prefix"},
36 "argUrl": {"type": "string", "optional": true, "description": "Treated as a prefix"} 36 "argUrl": {"type": "string", "optional": true, "description": "Treated as a prefix"},
37 "daysAgo": {"type": "integer", "optional": true, "description": "Exact match; today is 0"}
Matt Perry 2013/09/05 20:18:35 Does this fetch the entries added exactly <daysAgo
37 } 38 }
38 }, 39 },
39 { 40 {
40 "id": "ActivityResultSet", 41 "id": "ActivityResultSet",
41 "type": "object", 42 "type": "object",
42 "description": "This holds the results of a lookup, the filter of the lo okup, the time of the lookup, and whether there are more results that match.", 43 "description": "This holds the results of a lookup, the filter of the lo okup, the time of the lookup, and whether there are more results that match.",
43 "properties": { 44 "properties": {
44 "activities": {"type": "array", "items": {"$ref": "ExtensionActivity"} }, 45 "activities": {"type": "array", "items": {"$ref": "ExtensionActivity"} },
45 "maxTime": {"type": "integer", "optional": true}, 46 "maxTime": {"type": "integer", "optional": true},
46 "moreResults": {"type": "boolean"} 47 "moreResults": {"type": "boolean"}
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "parameters": [ 86 "parameters": [
86 { 87 {
87 "name": "activity", 88 "name": "activity",
88 "$ref": "ExtensionActivity" 89 "$ref": "ExtensionActivity"
89 } 90 }
90 ] 91 ]
91 } 92 }
92 ] 93 ]
93 } 94 }
94 ] 95 ]
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/activity_log_private/activity_log_private_api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698