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

Side by Side Diff: chrome/common/extensions/api/file_manager_private_internal.idl

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 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]
9 namespace fileManagerPrivateInternal { 8 namespace fileManagerPrivateInternal {
10 // Entry information that renderers need to create an Entry instance. 9 // Entry information that renderers need to create an Entry instance.
11 dictionary EntryDescription { 10 dictionary EntryDescription {
12 DOMString fileSystemName; 11 DOMString fileSystemName;
13 DOMString fileSystemRoot; 12 DOMString fileSystemRoot;
14 DOMString fileFullPath; 13 DOMString fileFullPath;
15 boolean fileIsDirectory; 14 boolean fileIsDirectory;
16 }; 15 };
17 16
18 callback SimpleCallback = void(); 17 callback SimpleCallback = void();
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 static void zipSelection(DOMString parentUrl, 84 static void zipSelection(DOMString parentUrl,
86 DOMString[] urls, 85 DOMString[] urls,
87 DOMString destName, 86 DOMString destName,
88 ZipSelectionCallback callback); 87 ZipSelectionCallback callback);
89 static void validatePathNameLength( 88 static void validatePathNameLength(
90 DOMString parentUrl, 89 DOMString parentUrl,
91 DOMString name, 90 DOMString name,
92 ValidatePathNameLengthCallback callback); 91 ValidatePathNameLengthCallback callback);
93 }; 92 };
94 }; 93 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698