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 * This file defines the <code>PPB_VideoDecoder_Dev</code> interface. | 7 * This file defines the <code>PPB_VideoDecoder_Dev</code> interface. |
8 */ | 8 */ |
9 label Chrome { | 9 label Chrome { |
10 M14 = 0.16 | 10 M14 = 0.16 |
11 }; | 11 }; |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 * may be freed asynchronously, after this method returns no more callbacks | 145 * may be freed asynchronously, after this method returns no more callbacks |
146 * will be made on the client. Any resources held by the client at that point | 146 * will be made on the client. Any resources held by the client at that point |
147 * may be freed. | 147 * may be freed. |
148 * | 148 * |
149 * Parameters: | 149 * Parameters: |
150 * |video_decoder| is the previously created handle to the decoder resource. | 150 * |video_decoder| is the previously created handle to the decoder resource. |
151 */ | 151 */ |
152 void Destroy( | 152 void Destroy( |
153 [in] PP_Resource video_decoder); | 153 [in] PP_Resource video_decoder); |
154 }; | 154 }; |
OLD | NEW |