diff options
author | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-05 22:55:26 +0000 |
---|---|---|
committer | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-05 22:55:26 +0000 |
commit | c52cf6de2df659a830bf54790c9f2cee3d5dcaa3 (patch) | |
tree | 22fa3740f993661f4da8665f3d8b9da066287220 /ppapi | |
parent | f964b7eeb2991e38d4b079a8ee982545dd0e56ed (diff) | |
download | chromium_src-c52cf6de2df659a830bf54790c9f2cee3d5dcaa3.zip chromium_src-c52cf6de2df659a830bf54790c9f2cee3d5dcaa3.tar.gz chromium_src-c52cf6de2df659a830bf54790c9f2cee3d5dcaa3.tar.bz2 |
Remove PP_FileInfo_Dev which appears to be unused.
All of the structs inside the file are type-def'ed to the non-dev equivalents
and there is no usage in the codebase.
BUG=
Review URL: https://codereview.chromium.org/11065038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160504 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/api/private/finish_writing_these/ppb_flash_file.idl | 2 | ||||
-rw-r--r-- | ppapi/c/dev/pp_file_info_dev.h | 15 |
2 files changed, 1 insertions, 16 deletions
diff --git a/ppapi/api/private/finish_writing_these/ppb_flash_file.idl b/ppapi/api/private/finish_writing_these/ppb_flash_file.idl index 3fc64a2..cf6fe8f 100644 --- a/ppapi/api/private/finish_writing_these/ppb_flash_file.idl +++ b/ppapi/api/private/finish_writing_these/ppb_flash_file.idl @@ -62,7 +62,7 @@ interface PPB_Flash_File_ModuleLocal_0_1 { int32_t QueryFile( [in] PP_Instance instance, [in] str_t path, - [out] PP_FileInfo_Dev info); + [out] PP_FileInfo info); /* Gets the list of files contained in a module-local directory. The return * value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in case diff --git a/ppapi/c/dev/pp_file_info_dev.h b/ppapi/c/dev/pp_file_info_dev.h deleted file mode 100644 index b298e22..0000000 --- a/ppapi/c/dev/pp_file_info_dev.h +++ /dev/null @@ -1,15 +0,0 @@ -/* Copyright (c) 2010 The Chromium Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ -#ifndef PPAPI_C_DEV_PP_FILE_INFO_DEV_H_ -#define PPAPI_C_DEV_PP_FILE_INFO_DEV_H_ - -#include "ppapi/c/pp_file_info.h" - -typedef PP_FileType PP_FileType_Dev; -typedef PP_FileSystemType PP_FileSystemType_Dev; -typedef struct PP_FileInfo PP_FileInfo_Dev; - -#endif /* PPAPI_C_DEV_PP_FILE_INFO_DEV_H_ */ - |