Chromium Code Reviews| 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 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/files/file_util_proxy.h" | |
|
kinuko
2013/05/16 05:17:31
I guessed including this in .cc (but not in .h) ma
nhiroki
2013/05/16 05:44:52
Done.
| |
| 12 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
| 13 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
| 14 #include "ppapi/c/pp_file_info.h" | 15 #include "ppapi/c/pp_file_info.h" |
| 15 #include "ppapi/c/ppb_file_ref.h" | 16 #include "ppapi/c/ppb_file_ref.h" |
| 16 #include "ppapi/shared_impl/ppb_file_ref_shared.h" | 17 #include "ppapi/shared_impl/ppb_file_ref_shared.h" |
| 17 #include "ppapi/shared_impl/scoped_pp_resource.h" | 18 #include "ppapi/shared_impl/scoped_pp_resource.h" |
| 18 #include "ppapi/shared_impl/var.h" | 19 #include "ppapi/shared_impl/var.h" |
| 19 #include "webkit/glue/webkit_glue_export.h" | 20 #include "webkit/glue/webkit_glue_export.h" |
| 20 #include "webkit/plugins/ppapi/file_callbacks.h" | 21 #include "webkit/plugins/ppapi/file_callbacks.h" |
| 21 | 22 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 119 // return the identical string object every time it is requested. | 120 // return the identical string object every time it is requested. |
| 120 scoped_refptr<StringVar> external_path_var_; | 121 scoped_refptr<StringVar> external_path_var_; |
| 121 | 122 |
| 122 DISALLOW_COPY_AND_ASSIGN(PPB_FileRef_Impl); | 123 DISALLOW_COPY_AND_ASSIGN(PPB_FileRef_Impl); |
| 123 }; | 124 }; |
| 124 | 125 |
| 125 } // namespace ppapi | 126 } // namespace ppapi |
| 126 } // namespace webkit | 127 } // namespace webkit |
| 127 | 128 |
| 128 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ | 129 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ |
| OLD | NEW |