Index: chrome/common/extensions/api/file_browser_private_internal.idl |
diff --git a/chrome/common/extensions/api/file_browser_private_internal.idl b/chrome/common/extensions/api/file_browser_private_internal.idl |
deleted file mode 100644 |
index d5a592e72b9b1cf5a15ff7b8c2049e2574b891ac..0000000000000000000000000000000000000000 |
--- a/chrome/common/extensions/api/file_browser_private_internal.idl |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-// Internal, used by fileBrowserPrivate's custom bindings. |
-[platforms=("chromeos"), |
- implemented_in="chrome/browser/chromeos/extensions/file_manager/file_browser_private_api_functions.h"] |
-namespace fileBrowserPrivateInternal { |
- // Entry information that renderers need to create an Entry instance. |
- dictionary EntryDescription { |
- DOMString fileSystemName; |
- DOMString fileSystemRoot; |
- DOMString fileFullPath; |
- boolean fileIsDirectory; |
- }; |
- |
- callback ResolveIsolatedEntriesCallback = void(EntryDescription[] entries); |
- |
- interface Functions { |
- static void resolveIsolatedEntries(DOMString[] urls, |
- ResolveIsolatedEntriesCallback callback); |
- }; |
-}; |