Commit 95ba2baa authored by Ehsan Karamad's avatar Ehsan Karamad Committed by Commit Bot

Fix a methods dec. in MimeHandlerViewContainerBase

The method CreateMimeHandlerViewGuestIfNecessary() has an implementation
in mime_handler_view_container_base.cc. It is marked as abstract by
mistake.

TBR=wjmaclean@chromium.org

Bug: 659750
Change-Id: If4751752f05ff120f47c7d65a5a6c3189aa08ac3
Reviewed-on: https://chromium-review.googlesource.com/1184119Reviewed-by: default avatarEhsan Karamad <ekaramad@chromium.org>
Commit-Queue: Ehsan Karamad <ekaramad@chromium.org>
Cr-Commit-Position: refs/heads/master@{#585007}
parent 84ed7b5a
...@@ -60,7 +60,7 @@ class MimeHandlerViewContainerBase : public blink::WebAssociatedURLLoaderClient, ...@@ -60,7 +60,7 @@ class MimeHandlerViewContainerBase : public blink::WebAssociatedURLLoaderClient,
protected: protected:
// Returns the frame which is embedding the corresponding plugin element. // Returns the frame which is embedding the corresponding plugin element.
virtual content::RenderFrame* GetEmbedderRenderFrame() const; virtual content::RenderFrame* GetEmbedderRenderFrame() const;
virtual void CreateMimeHandlerViewGuestIfNecessary() = 0; virtual void CreateMimeHandlerViewGuestIfNecessary();
virtual blink::WebFrame* GetGuestProxyFrame() const = 0; virtual blink::WebFrame* GetGuestProxyFrame() const = 0;
virtual int32_t GetInstanceId() const = 0; virtual int32_t GetInstanceId() const = 0;
virtual gfx::Size GetElementSize() const = 0; virtual gfx::Size GetElementSize() const = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment