| 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/memory/linked_ptr.h" | 12 #include "base/memory/linked_ptr.h" |
| 13 #include "googleurl/src/gurl.h" | |
| 14 #include "ppapi/c/pp_file_info.h" | 13 #include "ppapi/c/pp_file_info.h" |
| 15 #include "ppapi/c/ppb_file_ref.h" | 14 #include "ppapi/c/ppb_file_ref.h" |
| 16 #include "ppapi/shared_impl/ppb_file_ref_shared.h" | 15 #include "ppapi/shared_impl/ppb_file_ref_shared.h" |
| 17 #include "ppapi/shared_impl/scoped_pp_resource.h" | 16 #include "ppapi/shared_impl/scoped_pp_resource.h" |
| 18 #include "ppapi/shared_impl/var.h" | 17 #include "ppapi/shared_impl/var.h" |
| 18 #include "url/gurl.h" |
| 19 #include "webkit/plugins/webkit_plugins_export.h" | 19 #include "webkit/plugins/webkit_plugins_export.h" |
| 20 | 20 |
| 21 namespace webkit { | 21 namespace webkit { |
| 22 namespace ppapi { | 22 namespace ppapi { |
| 23 | 23 |
| 24 using ::ppapi::StringVar; | 24 using ::ppapi::StringVar; |
| 25 | 25 |
| 26 class PPB_FileSystem_Impl; | 26 class PPB_FileSystem_Impl; |
| 27 | 27 |
| 28 class WEBKIT_PLUGINS_EXPORT PPB_FileRef_Impl | 28 class WEBKIT_PLUGINS_EXPORT PPB_FileRef_Impl |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 // return the identical string object every time it is requested. | 118 // return the identical string object every time it is requested. |
| 119 scoped_refptr<StringVar> external_path_var_; | 119 scoped_refptr<StringVar> external_path_var_; |
| 120 | 120 |
| 121 DISALLOW_COPY_AND_ASSIGN(PPB_FileRef_Impl); | 121 DISALLOW_COPY_AND_ASSIGN(PPB_FileRef_Impl); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace ppapi | 124 } // namespace ppapi |
| 125 } // namespace webkit | 125 } // namespace webkit |
| 126 | 126 |
| 127 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ | 127 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ |
| OLD | NEW |