| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ppapi/proxy/ppb_file_ref_proxy.h" | 5 #include "ppapi/proxy/ppb_file_ref_proxy.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "ppapi/c/pp_directory_entry.h" | 10 #include "ppapi/c/pp_directory_entry.h" |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 linked_ptr<std::vector<PP_FileType> > file_types) { | 540 linked_ptr<std::vector<PP_FileType> > file_types) { |
| 541 Send(new PpapiMsg_PPBFileRef_ReadDirectoryEntriesCallbackComplete( | 541 Send(new PpapiMsg_PPBFileRef_ReadDirectoryEntriesCallbackComplete( |
| 542 API_ID_PPB_FILE_REF, params.host_resource, | 542 API_ID_PPB_FILE_REF, params.host_resource, |
| 543 *files, *file_types, params.callback_id, result)); | 543 *files, *file_types, params.callback_id, result)); |
| 544 } | 544 } |
| 545 | 545 |
| 546 #endif // !defined(OS_NACL) | 546 #endif // !defined(OS_NACL) |
| 547 | 547 |
| 548 } // namespace proxy | 548 } // namespace proxy |
| 549 } // namespace ppapi | 549 } // namespace ppapi |
| OLD | NEW |