| 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 CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "ppapi/proxy/connection.h" | 10 #include "ppapi/proxy/connection.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 public: | 39 public: |
| 40 PepperInProcessResourceCreation(RendererPpapiHostImpl* host_impl, | 40 PepperInProcessResourceCreation(RendererPpapiHostImpl* host_impl, |
| 41 webkit::ppapi::PluginInstance* instance); | 41 webkit::ppapi::PluginInstance* instance); |
| 42 virtual ~PepperInProcessResourceCreation(); | 42 virtual ~PepperInProcessResourceCreation(); |
| 43 | 43 |
| 44 // ResourceCreation_API implementation. | 44 // ResourceCreation_API implementation. |
| 45 virtual PP_Resource CreateFileChooser( | 45 virtual PP_Resource CreateFileChooser( |
| 46 PP_Instance instance, | 46 PP_Instance instance, |
| 47 PP_FileChooserMode_Dev mode, | 47 PP_FileChooserMode_Dev mode, |
| 48 const char* accept_types) OVERRIDE; | 48 const char* accept_types) OVERRIDE; |
| 49 virtual PP_Resource CreateGraphics2D( |
| 50 PP_Instance pp_instance, |
| 51 const PP_Size& size, |
| 52 PP_Bool is_always_opaque) OVERRIDE; |
| 49 virtual PP_Resource CreatePrinting( | 53 virtual PP_Resource CreatePrinting( |
| 50 PP_Instance instance) OVERRIDE; | 54 PP_Instance instance) OVERRIDE; |
| 51 virtual PP_Resource CreateURLRequestInfo( | 55 virtual PP_Resource CreateURLRequestInfo( |
| 52 PP_Instance instance, | 56 PP_Instance instance, |
| 53 const ::ppapi::URLRequestInfoData& data) OVERRIDE; | 57 const ::ppapi::URLRequestInfoData& data) OVERRIDE; |
| 54 | 58 |
| 55 private: | 59 private: |
| 56 // Non-owning pointer to the host for the current plugin. | 60 // Non-owning pointer to the host for the current plugin. |
| 57 RendererPpapiHostImpl* host_impl_; | 61 RendererPpapiHostImpl* host_impl_; |
| 58 | 62 |
| 59 DISALLOW_COPY_AND_ASSIGN(PepperInProcessResourceCreation); | 63 DISALLOW_COPY_AND_ASSIGN(PepperInProcessResourceCreation); |
| 60 }; | 64 }; |
| 61 | 65 |
| 62 } // namespace content | 66 } // namespace content |
| 63 | 67 |
| 64 #endif // CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ | 68 #endif // CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ |
| OLD | NEW |