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

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

Issue 9391013: Make a global enum to differentiate impl & proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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
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 aa90f13d8006fc9db438e6fec55696889a7bf8df..129509e78bfc7d87bccd621fccfe8f69dd14ae83 100644
--- a/webkit/plugins/ppapi/ppb_video_layer_impl.cc
+++ b/webkit/plugins/ppapi/ppb_video_layer_impl.cc
@@ -14,7 +14,7 @@ namespace webkit {
namespace ppapi {
PPB_VideoLayer_Impl::PPB_VideoLayer_Impl(PP_Instance instance)
- : Resource(instance) {
+ : Resource(::ppapi::OBJECT_IS_IMPL, instance) {
}
PPB_VideoLayer_Impl::~PPB_VideoLayer_Impl() {

Powered by Google App Engine
This is Rietveld 408576698