Chromium Code Reviews| Index: ppapi/proxy/ppapi_param_traits.h |
| =================================================================== |
| --- ppapi/proxy/ppapi_param_traits.h (revision 91228) |
| +++ ppapi/proxy/ppapi_param_traits.h (working copy) |
| @@ -5,6 +5,9 @@ |
| #ifndef PPAPI_PROXY_PPAPI_PARAM_TRAITS_H_ |
| #define PPAPI_PROXY_PPAPI_PARAM_TRAITS_H_ |
| +#include <string> |
| +#include <vector> |
|
nfullagar
2011/07/02 00:16:45
curious why this is needed now?
brettw
2011/07/06 16:00:34
I think he was fixing lint errors. Thanks!
sanga
2011/07/06 16:18:59
I'm addressing some lint errors.
On 2011/07/02 00
|
| + |
| #include "ipc/ipc_message_utils.h" |
| #include "ipc/ipc_platform_file.h" |
| #include "ppapi/c/pp_completion_callback.h" |
| @@ -12,7 +15,7 @@ |
| #include "ppapi/c/pp_rect.h" |
| #include "ppapi/c/pp_var.h" |
| -struct PP_FileInfo_Dev; |
| +struct PP_FileInfo; |
| struct PP_ObjectProperty; |
| struct PP_Flash_Menu; |
| @@ -42,8 +45,8 @@ |
| }; |
| template<> |
| -struct ParamTraits<PP_FileInfo_Dev> { |
| - typedef PP_FileInfo_Dev param_type; |
| +struct ParamTraits<PP_FileInfo> { |
| + typedef PP_FileInfo param_type; |
| static void Write(Message* m, const param_type& p); |
| static bool Read(const Message* m, void** iter, param_type* r); |
| static void Log(const param_type& p, std::string* l); |