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

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

Issue 1828683002: [Extensions] Convert APIs to use movable types [3] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Antony's Created 4 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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": "browsingData", 7 "namespace": "browsingData",
8 "description": "Use the <code>chrome.browsingData</code> API to remove brows ing data from a user's local profile.", 8 "description": "Use the <code>chrome.browsingData</code> API to remove brows ing data from a user's local profile.",
9 "compiler_options": {"use_movable_types": true},
9 "types": [ 10 "types": [
10 { 11 {
11 "id": "RemovalOptions", 12 "id": "RemovalOptions",
12 "type": "object", 13 "type": "object",
13 "description": "Options that determine exactly what data will be removed .", 14 "description": "Options that determine exactly what data will be removed .",
14 "properties": { 15 "properties": {
15 "since": { 16 "since": {
16 "type": "number", 17 "type": "number",
17 "optional": true, 18 "optional": true,
18 "description": "Remove data accumulated on or after this date, repre sented in milliseconds since the epoch (accessible via the <code>getTime</code> method of the JavaScript <code>Date</code> object). If absent, defaults to 0 (wh ich would remove all browsing data)." 19 "description": "Remove data accumulated on or after this date, repre sented in milliseconds since the epoch (accessible via the <code>getTime</code> method of the JavaScript <code>Date</code> object). If absent, defaults to 0 (wh ich would remove all browsing data)."
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 "type": "function", 386 "type": "function",
386 "description": "Called when websites' WebSQL databases have been cle ared.", 387 "description": "Called when websites' WebSQL databases have been cle ared.",
387 "optional": true, 388 "optional": true,
388 "parameters": [] 389 "parameters": []
389 } 390 }
390 ] 391 ]
391 } 392 }
392 ] 393 ]
393 } 394 }
394 ] 395 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/browser.idl ('k') | chrome/common/extensions/api/cast_devices_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698