| 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_INSTANCE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 } | 340 } |
| 341 | 341 |
| 342 ContentDecryptorDelegate* GetContentDecryptorDelegate(); | 342 ContentDecryptorDelegate* GetContentDecryptorDelegate(); |
| 343 | 343 |
| 344 // PluginInstance implementation | 344 // PluginInstance implementation |
| 345 virtual RenderView* GetRenderView() OVERRIDE; | 345 virtual RenderView* GetRenderView() OVERRIDE; |
| 346 virtual WebKit::WebPluginContainer* GetContainer() OVERRIDE; | 346 virtual WebKit::WebPluginContainer* GetContainer() OVERRIDE; |
| 347 virtual ::ppapi::VarTracker* GetVarTracker() OVERRIDE; | 347 virtual ::ppapi::VarTracker* GetVarTracker() OVERRIDE; |
| 348 virtual const GURL& GetPluginURL() OVERRIDE; | 348 virtual const GURL& GetPluginURL() OVERRIDE; |
| 349 virtual base::FilePath GetModulePath() OVERRIDE; | 349 virtual base::FilePath GetModulePath() OVERRIDE; |
| 350 virtual PP_Resource CreateExternalFileReference( | |
| 351 const base::FilePath& external_file_path) OVERRIDE; | |
| 352 virtual PP_Resource CreateImage(gfx::ImageSkia* source_image, | 350 virtual PP_Resource CreateImage(gfx::ImageSkia* source_image, |
| 353 float scale) OVERRIDE; | 351 float scale) OVERRIDE; |
| 354 virtual PP_ExternalPluginResult SwitchToOutOfProcessProxy( | 352 virtual PP_ExternalPluginResult SwitchToOutOfProcessProxy( |
| 355 const base::FilePath& file_path, | 353 const base::FilePath& file_path, |
| 356 ::ppapi::PpapiPermissions permissions, | 354 ::ppapi::PpapiPermissions permissions, |
| 357 const IPC::ChannelHandle& channel_handle, | 355 const IPC::ChannelHandle& channel_handle, |
| 358 base::ProcessId plugin_pid, | 356 base::ProcessId plugin_pid, |
| 359 int plugin_child_id) OVERRIDE; | 357 int plugin_child_id) OVERRIDE; |
| 360 virtual void SetAlwaysOnTop(bool on_top) OVERRIDE; | 358 virtual void SetAlwaysOnTop(bool on_top) OVERRIDE; |
| 361 virtual bool IsFullPagePlugin() OVERRIDE; | 359 virtual bool IsFullPagePlugin() OVERRIDE; |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 | 847 |
| 850 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_; | 848 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_; |
| 851 | 849 |
| 852 friend class PpapiPluginInstanceTest; | 850 friend class PpapiPluginInstanceTest; |
| 853 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); | 851 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); |
| 854 }; | 852 }; |
| 855 | 853 |
| 856 } // namespace content | 854 } // namespace content |
| 857 | 855 |
| 858 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 856 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
| OLD | NEW |