| Index: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.cc
|
| diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.cc
|
| index 65039a282ecf070bed41d0df9a88e767eeff24fd..c86cbb3e241fe871fa77b65d6cb80a2fd44f5877 100644
|
| --- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.cc
|
| +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.cc
|
| @@ -1,6 +1,6 @@
|
| -// Copyright 2011 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can
|
| -// be found in the LICENSE file.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
|
|
| #include "native_client/src/shared/ppapi_proxy/plugin_ppb_core.h"
|
| #include <stdio.h>
|
| @@ -34,7 +34,7 @@ bool main_thread_marked = false;
|
| // Resource's reference count goes to zero, the destructor should make sure
|
| // the browser reference is returned.
|
| void AddRefResource(PP_Resource resource) {
|
| - DebugPrintf("PPB_Core::AddRefResource: resource=%"NACL_PRIu32"\n",
|
| + DebugPrintf("PPB_Core::AddRefResource: resource=%"NACL_PRId32"\n",
|
| resource);
|
| if (!ppapi_proxy::PluginResourceTracker::Get()->AddRefResource(resource)) {
|
| DebugPrintf("PPB_Core::AddRefResource: not tracked locally\n");
|
| @@ -47,7 +47,7 @@ void AddRefResource(PP_Resource resource) {
|
| }
|
|
|
| void ReleaseResource(PP_Resource resource) {
|
| - DebugPrintf("PPB_Core::ReleaseResource: resource=%"NACL_PRIu32"\n",
|
| + DebugPrintf("PPB_Core::ReleaseResource: resource=%"NACL_PRId32"\n",
|
| resource);
|
| if (!ppapi_proxy::PluginResourceTracker::Get()->UnrefResource(resource)) {
|
| DebugPrintf("PPB_Core::ReleaseResource: not tracked locally\n");
|
|
|