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_PLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 virtual PlatformVideoDecoder* CreateVideoDecoder( | 203 virtual PlatformVideoDecoder* CreateVideoDecoder( |
204 media::VideoDecodeAccelerator::Client* client, | 204 media::VideoDecodeAccelerator::Client* client, |
205 int32 command_buffer_route_id) OVERRIDE; | 205 int32 command_buffer_route_id) OVERRIDE; |
206 virtual Broker* ConnectToBroker( | 206 virtual Broker* ConnectToBroker( |
207 webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE; | 207 webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE; |
208 virtual void NumberOfFindResultsChanged(int identifier, | 208 virtual void NumberOfFindResultsChanged(int identifier, |
209 int total, | 209 int total, |
210 bool final_result) OVERRIDE; | 210 bool final_result) OVERRIDE; |
211 virtual void SelectedFindResultChanged(int identifier, int index) OVERRIDE; | 211 virtual void SelectedFindResultChanged(int identifier, int index) OVERRIDE; |
212 virtual bool AsyncOpenFile(const base::FilePath& path, | 212 virtual bool AsyncOpenFile(const base::FilePath& path, |
213 int flags, | 213 int pp_open_flags, |
214 const AsyncOpenFileCallback& callback) OVERRIDE; | 214 const AsyncOpenFileCallback& callback) OVERRIDE; |
215 virtual void AsyncOpenFileSystemURL( | 215 virtual void AsyncOpenFileSystemURL( |
216 const GURL& path, | 216 const GURL& path, |
217 int flags, | 217 int pp_open_flags, |
218 const AsyncOpenFileSystemURLCallback& callback) OVERRIDE; | 218 const AsyncOpenFileSystemURLCallback& callback) OVERRIDE; |
219 virtual bool IsFileSystemOpened(PP_Instance instance, | 219 virtual bool IsFileSystemOpened(PP_Instance instance, |
220 PP_Resource resource) const OVERRIDE; | 220 PP_Resource resource) const OVERRIDE; |
221 virtual PP_FileSystemType GetFileSystemType( | 221 virtual PP_FileSystemType GetFileSystemType( |
222 PP_Instance instance, | 222 PP_Instance instance, |
223 PP_Resource resource) const OVERRIDE; | 223 PP_Resource resource) const OVERRIDE; |
224 virtual GURL GetFileSystemRootUrl(PP_Instance instance, | 224 virtual GURL GetFileSystemRootUrl(PP_Instance instance, |
225 PP_Resource resource) const OVERRIDE; | 225 PP_Resource resource) const OVERRIDE; |
226 virtual void MakeDirectory( | 226 virtual void MakeDirectory( |
227 const GURL& path, | 227 const GURL& path, |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 device_enumeration_event_handler_; | 458 device_enumeration_event_handler_; |
459 | 459 |
460 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; | 460 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; |
461 | 461 |
462 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 462 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
463 }; | 463 }; |
464 | 464 |
465 } // namespace content | 465 } // namespace content |
466 | 466 |
467 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 467 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |