Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(831)

Side by Side Diff: ppapi/api/private/ppb_flash.idl

Issue 10535062: Add an asynchronous version of the Flash DeviceID API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | ppapi/api/private/ppb_flash_device_id.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 };
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | ppapi/api/private/ppb_flash_device_id.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698