Index: webkit/plugins/ppapi/ppb_file_ref_impl.h |
diff --git a/webkit/plugins/ppapi/ppb_file_ref_impl.h b/webkit/plugins/ppapi/ppb_file_ref_impl.h |
index c9b1dbf9cd9c6992469f595e0f30454c6109fad0..0c7feb98f939aba18abf6df2037cbdf755b5326a 100644 |
--- a/webkit/plugins/ppapi/ppb_file_ref_impl.h |
+++ b/webkit/plugins/ppapi/ppb_file_ref_impl.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// 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. |
@@ -38,14 +38,18 @@ class PPB_FileRef_Impl : public ::ppapi::PPB_FileRef_Shared { |
// PPB_FileRef_API implementation (not provided by PPB_FileRef_Shared). |
virtual PP_Resource GetParent() OVERRIDE; |
- virtual int32_t MakeDirectory(PP_Bool make_ancestors, |
- PP_CompletionCallback callback) OVERRIDE; |
- virtual int32_t Touch(PP_Time last_access_time, |
- PP_Time last_modified_time, |
- PP_CompletionCallback callback) OVERRIDE; |
- virtual int32_t Delete(PP_CompletionCallback callback) OVERRIDE; |
- virtual int32_t Rename(PP_Resource new_file_ref, |
- PP_CompletionCallback callback) OVERRIDE; |
+ virtual int32_t MakeDirectory( |
+ PP_Bool make_ancestors, |
+ scoped_refptr< ::ppapi::TrackedCallback> callback) OVERRIDE; |
+ virtual int32_t Touch( |
+ PP_Time last_access_time, |
+ PP_Time last_modified_time, |
+ scoped_refptr< ::ppapi::TrackedCallback> callback) OVERRIDE; |
+ virtual int32_t Delete( |
+ scoped_refptr< ::ppapi::TrackedCallback> callback) OVERRIDE; |
+ virtual int32_t Rename( |
+ PP_Resource new_file_ref, |
+ scoped_refptr< ::ppapi::TrackedCallback> callback) OVERRIDE; |
virtual PP_Var GetAbsolutePath(); |
PPB_FileSystem_Impl* file_system() const { return file_system_.get(); } |