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

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

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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> module to remove br owsing data from a user's local profile.",
8 "types": [ 9 "types": [
9 { 10 {
10 "id": "RemovalOptions", 11 "id": "RemovalOptions",
11 "type": "object", 12 "type": "object",
12 "description": "Options that determine exactly what data will be removed .", 13 "description": "Options that determine exactly what data will be removed .",
13 "properties": { 14 "properties": {
14 "since": { 15 "since": {
15 "type": "number", 16 "type": "number",
16 "optional": true, 17 "optional": true,
17 "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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 "type": "function", 380 "type": "function",
380 "description": "Called when websites' WebSQL databases have been cle ared.", 381 "description": "Called when websites' WebSQL databases have been cle ared.",
381 "optional": true, 382 "optional": true,
382 "parameters": [] 383 "parameters": []
383 } 384 }
384 ] 385 ]
385 } 386 }
386 ] 387 ]
387 } 388 }
388 ] 389 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698