Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: webkit/plugins/ppapi/ppb_video_layer_impl.cc

Issue 7669055: Remove webkit::ppapi::Resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nulls auditeed Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/ppapi/ppb_video_layer_impl.h ('k') | webkit/plugins/ppapi/ppb_video_layer_software.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_video_layer_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_video_layer_impl.cc b/webkit/plugins/ppapi/ppb_video_layer_impl.cc
index e7cad6fe2d7b5d8284f593ac045ead8864eea515..aa90f13d8006fc9db438e6fec55696889a7bf8df 100644
--- a/webkit/plugins/ppapi/ppb_video_layer_impl.cc
+++ b/webkit/plugins/ppapi/ppb_video_layer_impl.cc
@@ -13,7 +13,7 @@ using ppapi::thunk::PPB_VideoLayer_API;
namespace webkit {
namespace ppapi {
-PPB_VideoLayer_Impl::PPB_VideoLayer_Impl(PluginInstance* instance)
+PPB_VideoLayer_Impl::PPB_VideoLayer_Impl(PP_Instance instance)
: Resource(instance) {
}
@@ -21,7 +21,7 @@ PPB_VideoLayer_Impl::~PPB_VideoLayer_Impl() {
}
// static
-PP_Resource PPB_VideoLayer_Impl::Create(PluginInstance* instance,
+PP_Resource PPB_VideoLayer_Impl::Create(PP_Instance instance,
PP_VideoLayerMode_Dev mode) {
if (mode != PP_VIDEOLAYERMODE_SOFTWARE)
return 0;
« no previous file with comments | « webkit/plugins/ppapi/ppb_video_layer_impl.h ('k') | webkit/plugins/ppapi/ppb_video_layer_software.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698