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

Side by Side Diff: chrome/common/extensions/api/web_navigation.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: Minor Cleanup 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": "webNavigation", 7 "namespace": "webNavigation",
8 "description": "Use the <code>chrome.webNavigation</code> module to receive notifications about the status of navigations requests in-flight.",
8 "types": [], 9 "types": [],
9 "functions": [ 10 "functions": [
10 { 11 {
11 "name": "getFrame", 12 "name": "getFrame",
12 "type": "function", 13 "type": "function",
13 "description": "Retrieves information about the given frame. A frame ref ers to an &lt;iframe&gt; or a &lt;frame&gt; of a web page and is identified by a tab ID and a frame ID.", 14 "description": "Retrieves information about the given frame. A frame ref ers to an &lt;iframe&gt; or a &lt;frame&gt; of a web page and is identified by a tab ID and a frame ID.",
14 "parameters": [ 15 "parameters": [
15 { 16 {
16 "type": "object", 17 "type": "object",
17 "name": "details", 18 "name": "details",
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 "transitionType": {"type": "string", "enum": ["link", "typed", "au to_bookmark", "auto_subframe", "manual_subframe", "generated", "start_page", "fo rm_submit", "reload", "keyword", "keyword_generated"], "description": "Cause of the navigation. The same transition types as defined in the history API are used ."}, 330 "transitionType": {"type": "string", "enum": ["link", "typed", "au to_bookmark", "auto_subframe", "manual_subframe", "generated", "start_page", "fo rm_submit", "reload", "keyword", "keyword_generated"], "description": "Cause of the navigation. The same transition types as defined in the history API are used ."},
330 "transitionQualifiers": {"type": "array", "description": "A list o f transition qualifiers.", "items": {"type": "string", "enum": ["client_redirect ", "server_redirect", "forward_back", "from_address_bar"]}}, 331 "transitionQualifiers": {"type": "array", "description": "A list o f transition qualifiers.", "items": {"type": "string", "enum": ["client_redirect ", "server_redirect", "forward_back", "from_address_bar"]}},
331 "timeStamp": {"type": "number", "description": "The time when the navigation was committed, in milliseconds since the epoch."} 332 "timeStamp": {"type": "number", "description": "The time when the navigation was committed, in milliseconds since the epoch."}
332 } 333 }
333 } 334 }
334 ] 335 ]
335 } 336 }
336 ] 337 ]
337 } 338 }
338 ] 339 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698