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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 PlatformVideoCaptureEventHandler* handler) OVERRIDE; | 178 PlatformVideoCaptureEventHandler* handler) OVERRIDE; |
179 virtual PlatformVideoDecoder* CreateVideoDecoder( | 179 virtual PlatformVideoDecoder* CreateVideoDecoder( |
180 media::VideoDecodeAccelerator::Client* client, | 180 media::VideoDecodeAccelerator::Client* client, |
181 int32 command_buffer_route_id) OVERRIDE; | 181 int32 command_buffer_route_id) OVERRIDE; |
182 virtual Broker* ConnectToBroker(PPB_Broker_Impl* client) OVERRIDE; | 182 virtual Broker* ConnectToBroker(PPB_Broker_Impl* client) OVERRIDE; |
183 virtual void NumberOfFindResultsChanged(int identifier, | 183 virtual void NumberOfFindResultsChanged(int identifier, |
184 int total, | 184 int total, |
185 bool final_result) OVERRIDE; | 185 bool final_result) OVERRIDE; |
186 virtual void SelectedFindResultChanged(int identifier, int index) OVERRIDE; | 186 virtual void SelectedFindResultChanged(int identifier, int index) OVERRIDE; |
187 virtual bool AsyncOpenFile(const base::FilePath& path, | 187 virtual bool AsyncOpenFile(const base::FilePath& path, |
188 int flags, | 188 int pp_open_flags, |
189 const AsyncOpenFileCallback& callback) OVERRIDE; | 189 const AsyncOpenFileCallback& callback) OVERRIDE; |
190 virtual void AsyncOpenFileSystemURL( | 190 virtual void AsyncOpenFileSystemURL( |
191 const GURL& path, | 191 const GURL& path, |
192 int flags, | 192 int pp_open_flags, |
193 const AsyncOpenFileSystemURLCallback& callback) OVERRIDE; | 193 const AsyncOpenFileSystemURLCallback& callback) OVERRIDE; |
194 virtual bool IsFileSystemOpened(PP_Instance instance, | 194 virtual bool IsFileSystemOpened(PP_Instance instance, |
195 PP_Resource resource) const OVERRIDE; | 195 PP_Resource resource) const OVERRIDE; |
196 virtual PP_FileSystemType GetFileSystemType( | 196 virtual PP_FileSystemType GetFileSystemType( |
197 PP_Instance instance, | 197 PP_Instance instance, |
198 PP_Resource resource) const OVERRIDE; | 198 PP_Resource resource) const OVERRIDE; |
199 virtual GURL GetFileSystemRootUrl(PP_Instance instance, | 199 virtual GURL GetFileSystemRootUrl(PP_Instance instance, |
200 PP_Resource resource) const OVERRIDE; | 200 PP_Resource resource) const OVERRIDE; |
201 virtual void MakeDirectory( | 201 virtual void MakeDirectory( |
202 const GURL& path, | 202 const GURL& path, |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 device_enumeration_event_handler_; | 429 device_enumeration_event_handler_; |
430 | 430 |
431 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; | 431 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; |
432 | 432 |
433 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 433 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
434 }; | 434 }; |
435 | 435 |
436 } // namespace content | 436 } // namespace content |
437 | 437 |
438 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 438 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |