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

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

Issue 6674015: Added mount change notification callback: chrome.fileSystem.onChanged... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 4482 matching lines...) Expand 10 before | Expand all | Expand 10 after
4493 "optional": "false", 4493 "optional": "false",
4494 "parameters": [ 4494 "parameters": [
4495 { 4495 {
4496 "type": "object", 4496 "type": "object",
4497 "isInstanceOf": "DOMFileSystem" 4497 "isInstanceOf": "DOMFileSystem"
4498 } 4498 }
4499 ] 4499 ]
4500 } 4500 }
4501 ] 4501 ]
4502 } 4502 }
4503 ],
4504 "events": [
4505 {
4506 "name": "onChanged",
4507 "type": "function",
4508 "description": "Fired when underlying file system changes.",
4509 "parameters": [
4510 {
4511 "type": "string",
4512 "name": "fullPath",
4513 "description": "Path of the filesystem directory entry that changed. "
4514 }
4515 ]
4516 }
4503 ] 4517 ]
4504 }, 4518 },
4505 4519
4506 { 4520 {
4507 "namespace":"webstorePrivate", 4521 "namespace":"webstorePrivate",
4508 "nodoc": "true", 4522 "nodoc": "true",
4509 "functions": [ 4523 "functions": [
4510 { 4524 {
4511 "name": "install", 4525 "name": "install",
4512 "description": "Installs the extension corresponding to the given id", 4526 "description": "Installs the extension corresponding to the given id",
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
4878 { 4892 {
4879 "type": "integer", 4893 "type": "integer",
4880 "name": "tabId", 4894 "name": "tabId",
4881 "description": "The id of the tab that was detached." 4895 "description": "The id of the tab that was detached."
4882 } 4896 }
4883 ] 4897 ]
4884 } 4898 }
4885 ] 4899 ]
4886 } 4900 }
4887 ] 4901 ]
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698