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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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},
10 "types": [ 9 "types": [
11 { 10 {
12 "id": "RemovalOptions", 11 "id": "RemovalOptions",
13 "type": "object", 12 "type": "object",
14 "description": "Options that determine exactly what data will be removed .", 13 "description": "Options that determine exactly what data will be removed .",
15 "properties": { 14 "properties": {
16 "since": { 15 "since": {
17 "type": "number", 16 "type": "number",
18 "optional": true, 17 "optional": true,
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)." 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)."
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 "type": "function", 385 "type": "function",
387 "description": "Called when websites' WebSQL databases have been cle ared.", 386 "description": "Called when websites' WebSQL databases have been cle ared.",
388 "optional": true, 387 "optional": true,
389 "parameters": [] 388 "parameters": []
390 } 389 }
391 ] 390 ]
392 } 391 }
393 ] 392 ]
394 } 393 }
395 ] 394 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698