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

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

Issue 550863003: Rename fileBrowserPrivate to fileManagerPrivate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
(Empty)
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.
4
5 // Internal, used by fileBrowserPrivate's custom bindings.
6 [platforms=("chromeos"),
7 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_browser_pr ivate_api_functions.h"]
8 namespace fileBrowserPrivateInternal {
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;
15 };
16
17 callback ResolveIsolatedEntriesCallback = void(EntryDescription[] entries);
18
19 interface Functions {
20 static void resolveIsolatedEntries(DOMString[] urls,
21 ResolveIsolatedEntriesCallback callback);
22 };
23 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/file_browser_private.idl ('k') | chrome/common/extensions/api/file_manager_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698