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 "webkit/plugins/ppapi/ppb_file_ref_impl.h" | 5 #include "webkit/plugins/ppapi/ppb_file_ref_impl.h" |
6 | 6 |
7 #include "base/files/file_util_proxy.h" | 7 #include "base/files/file_util_proxy.h" |
8 #include "base/platform_file.h" | 8 #include "base/platform_file.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
12 #include "net/base/escape.h" | 12 #include "net/base/escape.h" |
13 #include "ppapi/c/pp_errors.h" | 13 #include "ppapi/c/pp_errors.h" |
14 #include "ppapi/shared_impl/file_type_conversion.h" | 14 #include "ppapi/shared_impl/file_type_conversion.h" |
15 #include "ppapi/shared_impl/time_conversion.h" | 15 #include "ppapi/shared_impl/time_conversion.h" |
16 #include "ppapi/shared_impl/var.h" | 16 #include "ppapi/shared_impl/var.h" |
17 #include "ppapi/thunk/enter.h" | 17 #include "ppapi/thunk/enter.h" |
18 #include "ppapi/thunk/ppb_file_system_api.h" | 18 #include "ppapi/thunk/ppb_file_system_api.h" |
19 #include "webkit/common/fileapi/directory_entry.h" | 19 #include "webkit/common/fileapi/directory_entry.h" |
20 #include "webkit/common/fileapi/file_system_util.h" | 20 #include "webkit/common/fileapi/file_system_util.h" |
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 GetFileSystemURL(), | 509 GetFileSystemURL(), |
510 base::Bind(&DidReadDirectory, | 510 base::Bind(&DidReadDirectory, |
511 callback, base::Unretained(this), files, file_types), | 511 callback, base::Unretained(this), files, file_types), |
512 base::Bind(&DidFinishFileOperation, callback))) | 512 base::Bind(&DidFinishFileOperation, callback))) |
513 return PP_ERROR_FAILED; | 513 return PP_ERROR_FAILED; |
514 return PP_OK_COMPLETIONPENDING; | 514 return PP_OK_COMPLETIONPENDING; |
515 } | 515 } |
516 | 516 |
517 } // namespace ppapi | 517 } // namespace ppapi |
518 } // namespace webkit | 518 } // namespace webkit |
OLD | NEW |