[Easy Unlock] Fix a DCHECK: Load localized string correctly.
[chromium-blink-merge.git] / chrome / common / extensions / api / file_manager_private_internal.idl
bloba6ba6ece4d0d54a7cbbd3cc1e785581361f607de
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
3 // found in the LICENSE file.
5 // Internal, used by fileManagerPrivate's custom bindings.
6 [platforms=("chromeos"),
7 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_manager_private_api_functions.h"]
8 namespace fileManagerPrivateInternal {
9 // Entry information that renderers need to create an Entry instance.
10 dictionary EntryDescription {
11 DOMString fileSystemName;
12 DOMString fileSystemRoot;
13 DOMString fileFullPath;
14 boolean fileIsDirectory;
17 callback ResolveIsolatedEntriesCallback = void(EntryDescription[] entries);
19 interface Functions {
20 static void resolveIsolatedEntries(DOMString[] urls,
21 ResolveIsolatedEntriesCallback callback);