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

Unified Diff: webkit/glue/plugins/pepper_var.cc

Issue 5837001: Resource width 64->32 change. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/ppapi
Patch Set: Fixed version numbers. Created 10 years 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 | « ppapi/tests/arch_dependent_sizes_64.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_var.cc
diff --git a/webkit/glue/plugins/pepper_var.cc b/webkit/glue/plugins/pepper_var.cc
index 24fa2c37c4c77ecc70a1fcc02ad0d820abf569ea..c9c354cf6cdfba717cae4e93f56e9162d2f79057 100644
--- a/webkit/glue/plugins/pepper_var.cc
+++ b/webkit/glue/plugins/pepper_var.cc
@@ -714,7 +714,8 @@ void Var::PluginAddRefPPVar(PP_Var var) {
if (var.type == PP_VARTYPE_STRING || var.type == PP_VARTYPE_OBJECT) {
// TODO(brettw) consider checking that the ID is actually a var ID rather
// than some random other resource ID.
- if (!ResourceTracker::Get()->AddRefResource(var.value.as_id))
+ PP_Resource resource = static_cast<PP_Resource>(var.value.as_id);
+ if (!ResourceTracker::Get()->AddRefResource(resource))
DLOG(WARNING) << "AddRefVar()ing a nonexistant string/object var.";
}
}
@@ -724,7 +725,8 @@ void Var::PluginReleasePPVar(PP_Var var) {
if (var.type == PP_VARTYPE_STRING || var.type == PP_VARTYPE_OBJECT) {
// TODO(brettw) consider checking that the ID is actually a var ID rather
// than some random other resource ID.
- if (!ResourceTracker::Get()->UnrefResource(var.value.as_id))
+ PP_Resource resource = static_cast<PP_Resource>(var.value.as_id);
+ if (!ResourceTracker::Get()->UnrefResource(resource))
DLOG(WARNING) << "ReleaseVar()ing a nonexistant string/object var.";
}
}
@@ -776,7 +778,8 @@ PP_Var StringVar::StringToPPVar(PluginModule* module,
scoped_refptr<StringVar> StringVar::FromPPVar(PP_Var var) {
if (var.type != PP_VARTYPE_STRING)
return scoped_refptr<StringVar>(NULL);
- return Resource::GetAs<StringVar>(var.value.as_id);
+ PP_Resource resource = static_cast<PP_Resource>(var.value.as_id);
+ return Resource::GetAs<StringVar>(resource);
}
// ObjectVar -------------------------------------------------------------
@@ -817,7 +820,8 @@ PP_Var ObjectVar::NPObjectToPPVar(PluginModule* module, NPObject* object) {
scoped_refptr<ObjectVar> ObjectVar::FromPPVar(PP_Var var) {
if (var.type != PP_VARTYPE_OBJECT)
return scoped_refptr<ObjectVar>(NULL);
- return Resource::GetAs<ObjectVar>(var.value.as_id);
+ PP_Resource resource = static_cast<PP_Resource>(var.value.as_id);
+ return Resource::GetAs<ObjectVar>(resource);
}
// TryCatch --------------------------------------------------------------------
« no previous file with comments | « ppapi/tests/arch_dependent_sizes_64.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698