Index: ppapi/proxy/ppp_video_decoder_proxy.cc |
diff --git a/ppapi/proxy/ppp_video_decoder_proxy.cc b/ppapi/proxy/ppp_video_decoder_proxy.cc |
index d4eaed1ba0cdc4469d8091be770d6e8861bd2fe0..ddfc0c3316af275c15bfaf6f46bb25328e4cc3c9 100644 |
--- a/ppapi/proxy/ppp_video_decoder_proxy.cc |
+++ b/ppapi/proxy/ppp_video_decoder_proxy.cc |
@@ -5,6 +5,7 @@ |
#include "ppapi/proxy/ppp_video_decoder_proxy.h" |
#include "ppapi/proxy/host_dispatcher.h" |
+#include "ppapi/proxy/plugin_resource_tracker.h" |
#include "ppapi/proxy/ppapi_messages.h" |
#include "ppapi/proxy/ppb_video_decoder_proxy.h" |
#include "ppapi/thunk/enter.h" |
@@ -153,7 +154,8 @@ void PPP_VideoDecoder_Proxy::OnMsgNotifyEndOfStream( |
const HostResource& decoder) { |
PP_Resource plugin_decoder = PluginResourceTracker::GetInstance()-> |
PluginResourceForHostResource(decoder); |
- ppp_video_decoder_target()->EndOfStream(decoder.instance(), plugin_decoder); |
+ ppp_video_decoder_target()->EndOfStream(decoder.instance(), |
+ plugin_decoder); |
} |
void PPP_VideoDecoder_Proxy::OnMsgNotifyError( |