OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // File-level comment to appease parser. Eventually this will not be necessary. | 5 // File-level comment to appease parser. Eventually this will not be necessary. |
6 | 6 |
7 [nodoc] namespace fileSystem { | 7 [nodoc] namespace fileSystem { |
8 callback GetDisplayPathCallback = void (DOMString displayPath); | 8 callback GetDisplayPathCallback = void (DOMString displayPath); |
9 | 9 |
10 interface Functions { | 10 interface Functions { |
11 static void getDisplayPath(DOMString fsname, DOMString fspath, | 11 static void getDisplayPath([instanceOf=FileEntry] object fileEntry, |
12 GetDisplayPathCallback onSuccess); | 12 GetDisplayPathCallback onSuccess); |
13 }; | 13 }; |
14 }; | 14 }; |
OLD | NEW |