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

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

Issue 10837091: Drive: Adds clearDriveCache API to file_browser_private. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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":"fileBrowserPrivate", 7 "namespace":"fileBrowserPrivate",
8 "nodoc": "true", 8 "nodoc": "true",
9 "types": [ 9 "types": [
10 { 10 {
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 "type": "object", 938 "type": "object",
939 "isInstanceOf": "Entry", 939 "isInstanceOf": "Entry",
940 "description": "Entry representing a search result." 940 "description": "Entry representing a search result."
941 } 941 }
942 } 942 }
943 ] 943 ]
944 } 944 }
945 ] 945 ]
946 }, 946 },
947 { 947 {
948 "name": "clearDriveCache",
949 "description": "Clear all GData local caches.",
950 "parameters": []
951 },
952 {
948 "name": "getNetworkConnectionState", 953 "name": "getNetworkConnectionState",
949 "description": "Retrieves the state of the currently active network conn ection.", 954 "description": "Retrieves the state of the currently active network conn ection.",
950 "parameters": [ 955 "parameters": [
951 { 956 {
952 "name": "callback", 957 "name": "callback",
953 "type": "function", 958 "type": "function",
954 "parameters": [ 959 "parameters": [
955 { 960 {
956 "name": "result", 961 "name": "result",
957 "type": "object", 962 "type": "object",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 }, 1051 },
1047 { 1052 {
1048 "name": "onNetworkConnectionChanged", 1053 "name": "onNetworkConnectionChanged",
1049 "type": "function", 1054 "type": "function",
1050 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.", 1055 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.",
1051 "parameters": [] 1056 "parameters": []
1052 } 1057 }
1053 ] 1058 ]
1054 } 1059 }
1055 ] 1060 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698