From 198b590bb15422d06a14f59700c72f2fa71b1314 Mon Sep 17 00:00:00 2001 From: "rsleevi@chromium.org" Date: Thu, 27 Jun 2013 10:36:11 +0000 Subject: Update Linux to use scoped_refptr::get() rather than implicit "operator T*" Fixes a number of cases either not caught by the automated tool or that have recently regressed. BUG=206189 TBR=darin Review URL: https://chromiumcodereview.appspot.com/17948002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208882 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/proxy/file_ref_resource.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ppapi/proxy/file_ref_resource.cc') diff --git a/ppapi/proxy/file_ref_resource.cc b/ppapi/proxy/file_ref_resource.cc index 29e8105..c66a321 100644 --- a/ppapi/proxy/file_ref_resource.cc +++ b/ppapi/proxy/file_ref_resource.cc @@ -211,7 +211,7 @@ int32_t FileRefResource::ReadDirectoryEntriesInHost( } PP_Var FileRefResource::GetAbsolutePath() { - if (!absolute_path_var_) { + if (!absolute_path_var_.get()) { std::string absolute_path; int32_t result = SyncCall( BROWSER, PpapiHostMsg_FileRef_GetAbsolutePath(), &absolute_path); -- cgit v1.1