| Index: ppapi/proxy/ppb_testing_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_testing_proxy.cc b/ppapi/proxy/ppb_testing_proxy.cc
|
| index 0dbab0be0635ca11f5a1f490251c7d55a5a2e111..606cdc31fd2985b602f61119145cf281cc9fe717 100644
|
| --- a/ppapi/proxy/ppb_testing_proxy.cc
|
| +++ b/ppapi/proxy/ppb_testing_proxy.cc
|
| @@ -112,7 +112,7 @@ uint32_t GetLiveVars(PP_Var live_vars[], uint32_t array_size) {
|
| i < std::min(static_cast<size_t>(array_size), vars.size());
|
| ++i)
|
| live_vars[i] = vars[i];
|
| - return vars.size();
|
| + return static_cast<uint32_t>(vars.size());
|
| }
|
|
|
| void SetMinimumArrayBufferSizeForShmem(PP_Instance instance,
|
|
|