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

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

Issue 98493003: Simplify fileBrowserPrivate.getDriveConnectionStatus(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the util function name. Created 7 years 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/browser/resources/file_manager/foreground/js/volume_manager_wrapper.js ('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 // 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":"fileBrowserPrivate", 7 "namespace":"fileBrowserPrivate",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br owser_private_api_functions.h" 9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br owser_private_api_functions.h"
10 }, 10 },
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 "parameters": [ 940 "parameters": [
941 { 941 {
942 "name": "callback", 942 "name": "callback",
943 "type": "function", 943 "type": "function",
944 "parameters": [ 944 "parameters": [
945 { 945 {
946 "name": "result", 946 "name": "result",
947 "type": "object", 947 "type": "object",
948 "properties": { 948 "properties": {
949 "type": {"type": "string"}, 949 "type": {"type": "string"},
950 "reasons": { 950 "reason": {
951 "type": "array", 951 "type": "string",
952 "description": "Reasons of offline.", 952 "description": "Reasons of offline.",
953 "items": { "type": "string" } 953 "optional": true
954 } 954 }
955 } 955 }
956 } 956 }
957 ] 957 ]
958 } 958 }
959 ] 959 ]
960 }, 960 },
961 { 961 {
962 "name": "validatePathNameLength", 962 "name": "validatePathNameLength",
963 "description": "Checks whether the path name length fits in the limit of the filesystem.", 963 "description": "Checks whether the path name length fits in the limit of the filesystem.",
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
1167 }, 1167 },
1168 { 1168 {
1169 "name": "onDriveConnectionStatusChanged", 1169 "name": "onDriveConnectionStatusChanged",
1170 "type": "function", 1170 "type": "function",
1171 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.", 1171 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.",
1172 "parameters": [] 1172 "parameters": []
1173 } 1173 }
1174 ] 1174 ]
1175 } 1175 }
1176 ] 1176 ]
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/foreground/js/volume_manager_wrapper.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698