| Index: content/renderer/pepper/fake_pepper_plugin_instance.h
|
| diff --git a/content/renderer/pepper/fake_pepper_plugin_instance.h b/content/renderer/pepper/fake_pepper_plugin_instance.h
|
| index 280f888bf13e06e051d890963c9c219d9ea74b2c..b5dcbe68926ff66e690a96cf8d71670822a034f7 100644
|
| --- a/content/renderer/pepper/fake_pepper_plugin_instance.h
|
| +++ b/content/renderer/pepper/fake_pepper_plugin_instance.h
|
| @@ -12,37 +12,35 @@ namespace content {
|
|
|
| class FakePepperPluginInstance : public PepperPluginInstance {
|
| public:
|
| - virtual ~FakePepperPluginInstance();
|
| + ~FakePepperPluginInstance() override;
|
|
|
| // PepperPluginInstance overrides.
|
| - virtual content::RenderView* GetRenderView() override;
|
| - virtual blink::WebPluginContainer* GetContainer() override;
|
| - virtual v8::Isolate* GetIsolate() const override;
|
| - virtual ppapi::VarTracker* GetVarTracker() override;
|
| - virtual const GURL& GetPluginURL() override;
|
| - virtual base::FilePath GetModulePath() override;
|
| - virtual PP_Resource CreateImage(gfx::ImageSkia* source_image,
|
| - float scale) override;
|
| - virtual PP_ExternalPluginResult SwitchToOutOfProcessProxy(
|
| + content::RenderView* GetRenderView() override;
|
| + blink::WebPluginContainer* GetContainer() override;
|
| + v8::Isolate* GetIsolate() const override;
|
| + ppapi::VarTracker* GetVarTracker() override;
|
| + const GURL& GetPluginURL() override;
|
| + base::FilePath GetModulePath() override;
|
| + PP_Resource CreateImage(gfx::ImageSkia* source_image, float scale) override;
|
| + PP_ExternalPluginResult SwitchToOutOfProcessProxy(
|
| const base::FilePath& file_path,
|
| ppapi::PpapiPermissions permissions,
|
| const IPC::ChannelHandle& channel_handle,
|
| base::ProcessId plugin_pid,
|
| int plugin_child_id) override;
|
| - virtual void SetAlwaysOnTop(bool on_top) override;
|
| - virtual bool IsFullPagePlugin() override;
|
| - virtual bool FlashSetFullscreen(bool fullscreen, bool delay_report) override;
|
| - virtual bool IsRectTopmost(const gfx::Rect& rect) override;
|
| - virtual int32_t Navigate(const ppapi::URLRequestInfoData& request,
|
| - const char* target,
|
| - bool from_user_action) override;
|
| - virtual int MakePendingFileRefRendererHost(const base::FilePath& path)
|
| - override;
|
| - virtual void SetEmbedProperty(PP_Var key, PP_Var value) override;
|
| - virtual void SetSelectedText(const base::string16& selected_text) override;
|
| - virtual void SetLinkUnderCursor(const std::string& url) override;
|
| - virtual void SetTextInputType(ui::TextInputType type) override;
|
| - virtual void PostMessageToJavaScript(PP_Var message) override;
|
| + void SetAlwaysOnTop(bool on_top) override;
|
| + bool IsFullPagePlugin() override;
|
| + bool FlashSetFullscreen(bool fullscreen, bool delay_report) override;
|
| + bool IsRectTopmost(const gfx::Rect& rect) override;
|
| + int32_t Navigate(const ppapi::URLRequestInfoData& request,
|
| + const char* target,
|
| + bool from_user_action) override;
|
| + int MakePendingFileRefRendererHost(const base::FilePath& path) override;
|
| + void SetEmbedProperty(PP_Var key, PP_Var value) override;
|
| + void SetSelectedText(const base::string16& selected_text) override;
|
| + void SetLinkUnderCursor(const std::string& url) override;
|
| + void SetTextInputType(ui::TextInputType type) override;
|
| + void PostMessageToJavaScript(PP_Var message) override;
|
|
|
| private:
|
| GURL gurl_;
|
|
|