| Index: third_party/WebKit/public/web/WebFrameClient.h
 | 
| diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
 | 
| index 108c4c7afabd5da187b2189e8a4d274e2475cce8..ebde5da8af21027974c7ee9c42cd823c54ae8549 100644
 | 
| --- a/third_party/WebKit/public/web/WebFrameClient.h
 | 
| +++ b/third_party/WebKit/public/web/WebFrameClient.h
 | 
| @@ -702,6 +702,13 @@ public:
 | 
|          return WebPageVisibilityStateVisible;
 | 
|      }
 | 
|  
 | 
| +    // Overwrites the given URL to use an HTML5 embed if possible.
 | 
| +    // An empty URL is returned if the URL is not overriden.
 | 
| +    virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url)
 | 
| +    {
 | 
| +        return WebURL();
 | 
| +    }
 | 
| +
 | 
|  protected:
 | 
|      virtual ~WebFrameClient() { }
 | 
|  };
 | 
| 
 |