| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // Internal, used by fileManagerPrivate's custom bindings. | 5 // Internal, used by fileManagerPrivate's custom bindings. |
| 6 [platforms=("chromeos"), | 6 [platforms=("chromeos"), |
| 7 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_manager_pr
ivate_api_functions.h"] | 7 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_manager_pr
ivate_api_functions.h", |
| 8 use_movable_types=true] |
| 8 namespace fileManagerPrivateInternal { | 9 namespace fileManagerPrivateInternal { |
| 9 // Entry information that renderers need to create an Entry instance. | 10 // Entry information that renderers need to create an Entry instance. |
| 10 dictionary EntryDescription { | 11 dictionary EntryDescription { |
| 11 DOMString fileSystemName; | 12 DOMString fileSystemName; |
| 12 DOMString fileSystemRoot; | 13 DOMString fileSystemRoot; |
| 13 DOMString fileFullPath; | 14 DOMString fileFullPath; |
| 14 boolean fileIsDirectory; | 15 boolean fileIsDirectory; |
| 15 }; | 16 }; |
| 16 | 17 |
| 17 callback SimpleCallback = void(); | 18 callback SimpleCallback = void(); |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 static void zipSelection(DOMString parentUrl, | 85 static void zipSelection(DOMString parentUrl, |
| 85 DOMString[] urls, | 86 DOMString[] urls, |
| 86 DOMString destName, | 87 DOMString destName, |
| 87 ZipSelectionCallback callback); | 88 ZipSelectionCallback callback); |
| 88 static void validatePathNameLength( | 89 static void validatePathNameLength( |
| 89 DOMString parentUrl, | 90 DOMString parentUrl, |
| 90 DOMString name, | 91 DOMString name, |
| 91 ValidatePathNameLengthCallback callback); | 92 ValidatePathNameLengthCallback callback); |
| 92 }; | 93 }; |
| 93 }; | 94 }; |
| OLD | NEW |