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 | 5 |
6 /** | 6 /** |
7 * This file contains the <code>PPB_Flash</code> interface. | 7 * This file contains the <code>PPB_Flash</code> interface. |
8 */ | 8 */ |
9 | 9 |
10 label Chrome { | 10 label Chrome { |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 /** | 163 /** |
164 * Indicates that there's activity and, e.g., the screensaver shouldn't kick | 164 * Indicates that there's activity and, e.g., the screensaver shouldn't kick |
165 * in. | 165 * in. |
166 */ | 166 */ |
167 [version=12.1] | 167 [version=12.1] |
168 void UpdateActivity( | 168 void UpdateActivity( |
169 [in] PP_Instance instance); | 169 [in] PP_Instance instance); |
170 | 170 |
171 /** | 171 /** |
172 * Returns the device ID as a string. Returns a PP_VARTYPE_UNDEFINED on error. | 172 * Returns the device ID as a string. Returns a PP_VARTYPE_UNDEFINED on error. |
| 173 * Deprecated, use GetDeviceIDAsync. |
173 */ | 174 */ |
174 [version=12.2] | 175 [version=12.2] |
175 PP_Var GetDeviceID([in] PP_Instance instance); | 176 PP_Var GetDeviceID([in] PP_Instance instance); |
176 | 177 |
177 /** | 178 /** |
178 * Deprecated. See GetSetting(). | 179 * Deprecated. See GetSetting(). |
179 */ | 180 */ |
180 [version=12.3] | 181 [version=12.3] |
181 int32_t GetSettingInt(PP_Instance instance, PP_FlashSetting setting); | 182 int32_t GetSettingInt([in] PP_Instance instance, |
| 183 [in] PP_FlashSetting setting); |
182 | 184 |
183 /** | 185 /** |
184 * Returns the value associated with the given setting. Invalid enums will | 186 * Returns the value associated with the given setting. Invalid enums will |
185 * result in an undefined PP_Var return value. | 187 * result in an undefined PP_Var return value. |
186 */ | 188 */ |
187 [version=12.4] | 189 [version=12.4] |
188 PP_Var GetSetting(PP_Instance instance, PP_FlashSetting setting); | 190 PP_Var GetSetting(PP_Instance instance, PP_FlashSetting setting); |
189 }; | 191 }; |
OLD | NEW |