OLD | NEW |
1 /* Copyright (c) 2011 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 | 5 |
6 | 6 |
7 /** | 7 /** |
8 * This file defines the <code>PPB_FileChooser_Dev</code> interface. | 8 * This file defines the <code>PPB_FileChooser_Dev</code> interface. |
9 */ | 9 */ |
10 | 10 |
11 label Chrome { | 11 label Chrome { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 * | 93 * |
94 * @param[in] chooser The file chooser resource. | 94 * @param[in] chooser The file chooser resource. |
95 * | 95 * |
96 * @return A <code>PP_Resource</code> containing the next file chosen by the | 96 * @return A <code>PP_Resource</code> containing the next file chosen by the |
97 * user, or 0 if there are no more files. | 97 * user, or 0 if there are no more files. |
98 */ | 98 */ |
99 PP_Resource GetNextChosenFile( | 99 PP_Resource GetNextChosenFile( |
100 [in] PP_Resource chooser); | 100 [in] PP_Resource chooser); |
101 }; | 101 }; |
102 | 102 |
OLD | NEW |