Chromium Code Reviews| Index: content/renderer/pepper/renderer_ppapi_host_impl.h |
| diff --git a/content/renderer/pepper/renderer_ppapi_host_impl.h b/content/renderer/pepper/renderer_ppapi_host_impl.h |
| index d1256ac3a2b15ea0e0f59bb96737e97ee5485287..97c6c4312c91e16383b1e93b7dbd70955ee261a8 100644 |
| --- a/content/renderer/pepper/renderer_ppapi_host_impl.h |
| +++ b/content/renderer/pepper/renderer_ppapi_host_impl.h |
| @@ -5,6 +5,8 @@ |
| #ifndef CONTENT_RENDERER_PEPPER_RENDERER_PPAPI_HOST_IMPL_H_ |
| #define CONTENT_RENDERER_PEPPER_RENDERER_PPAPI_HOST_IMPL_H_ |
| +#include <map> |
| + |
| #include "base/basictypes.h" |
| #include "base/memory/scoped_ptr.h" |
| #include "content/public/renderer/renderer_ppapi_host.h" |
| @@ -103,6 +105,10 @@ class RendererPpapiHostImpl |
| base::PlatformFile handle, |
| bool should_close_source) OVERRIDE; |
| virtual bool IsRunningInProcess() const OVERRIDE; |
| + virtual void CreateBrowserResourceHost( |
| + PP_Instance instance, |
| + const IPC::Message& nested_msg, |
| + base::Callback<void(int32)> callback) const OVERRIDE; |
|
teravest
2013/05/29 15:19:36
nit: You've got int32 here, and int in the impleme
raymes
2013/05/29 15:53:03
good catch thanks
|
| private: |
| RendererPpapiHostImpl(webkit::ppapi::PluginModule* module, |