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

Side by Side Diff: third_party/chrome/idl/page_capture.json

Issue 12261015: Import chrome idl into third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « third_party/chrome/idl/page_actions.json ('k') | third_party/chrome/idl/permissions.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 [
6 {
7 "namespace": "pageCapture",
8 "functions": [
9 {
10 "name": "saveAsMHTML",
11 "type": "function",
12 "description": "Saves the content of the tab with given id as MHTML.",
13 "parameters": [
14 {
15 "name": "details",
16 "type": "object",
17 "properties": {
18 "tabId": {
19 "type": "integer",
20 "minimum": 0,
21 "description": "The id of the tab to save as MHTML."
22 }
23 }
24 },
25 {
26 "name": "callback",
27 "type": "function",
28 "description": "Called when the MHTML has been generated.",
29 "parameters": [
30 {
31 "name": "mhtmlData",
32 "type": "binary",
33 "optional": "true",
34 "description": "The MHTML data as a Blob."
35 }
36 ]
37 }
38 ]
39 }
40 ]
41 }
42 ]
OLDNEW
« no previous file with comments | « third_party/chrome/idl/page_actions.json ('k') | third_party/chrome/idl/permissions.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698