diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-21 07:01:10 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-21 07:01:10 +0000 |
commit | fb7ec648730a491a9342fe4200bc5304cd72bbc4 (patch) | |
tree | 757e2f6f1a3d6f2e2defc828c6e335ecc05f3122 /ppapi/c | |
parent | 102d4efc86b9a546dfba16b9eb781ad2de03bed6 (diff) | |
download | chromium_src-fb7ec648730a491a9342fe4200bc5304cd72bbc4.zip chromium_src-fb7ec648730a491a9342fe4200bc5304cd72bbc4.tar.gz chromium_src-fb7ec648730a491a9342fe4200bc5304cd72bbc4.tar.bz2 |
PPAPI: Remove out-dated or unnecessary TODOs from public files.
BUG=
TEST=
Review URL: http://codereview.chromium.org/9731003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127918 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r-- | ppapi/c/ppb_file_system.h | 6 | ||||
-rw-r--r-- | ppapi/c/ppb_graphics_2d.h | 8 |
2 files changed, 2 insertions, 12 deletions
diff --git a/ppapi/c/ppb_file_system.h b/ppapi/c/ppb_file_system.h index a018538..8eb94a1 100644 --- a/ppapi/c/ppb_file_system.h +++ b/ppapi/c/ppb_file_system.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppb_file_system.idl modified Wed Feb 15 13:55:58 2012. */ +/* From ppb_file_system.idl modified Mon Mar 19 11:36:09 2012. */ #ifndef PPAPI_C_PPB_FILE_SYSTEM_H_ #define PPAPI_C_PPB_FILE_SYSTEM_H_ @@ -68,10 +68,6 @@ struct PPB_FileSystem_1_0 { * * @return An int32_t containing an error code from <code>pp_errors.h</code>. */ - /* - * TODO(brettw) clarify whether this must have completed before a file can - * be opened in it. Clarify what it means to be "completed." - */ int32_t (*Open)(PP_Resource file_system, int64_t expected_size, struct PP_CompletionCallback callback); diff --git a/ppapi/c/ppb_graphics_2d.h b/ppapi/c/ppb_graphics_2d.h index 9224d1b..6c41f3f 100644 --- a/ppapi/c/ppb_graphics_2d.h +++ b/ppapi/c/ppb_graphics_2d.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppb_graphics_2d.idl modified Tue Jan 24 16:03:48 2012. */ +/* From ppb_graphics_2d.idl modified Mon Mar 19 11:35:04 2012. */ #ifndef PPAPI_C_PPB_GRAPHICS_2D_H_ #define PPAPI_C_PPB_GRAPHICS_2D_H_ @@ -245,12 +245,6 @@ struct PPB_Graphics2D_1_0 { * not issued its callback yet. In the failure case, nothing will be updated * and no callback will be scheduled. */ - /* TODO(darin): We should ensure that the completion callback always runs, so - * that it is easier for consumers to manage memory referenced by a callback. - * - * TODO(): Add back in the synchronous mode description once we have support - * for it. - */ int32_t (*Flush)(PP_Resource graphics_2d, struct PP_CompletionCallback callback); }; |