Chromium Code Reviews| Index: components/html_viewer/html_document.h |
| diff --git a/components/html_viewer/html_document.h b/components/html_viewer/html_document.h |
| index 873d14e89485838f5efef9d92071abed39589927..43fe055bd227967d76af351f6f2b29310b02c644 100644 |
| --- a/components/html_viewer/html_document.h |
| +++ b/components/html_viewer/html_document.h |
| @@ -88,7 +88,8 @@ class HTMLDocument : public blink::WebViewClient, |
| blink::WebTreeScopeType scope, |
| const blink::WebString& frameName, |
| blink::WebSandboxFlags sandboxFlags); |
| - virtual void frameDetached(blink::WebFrame*); |
| + virtual void frameDetached(blink::WebFrame* frame); |
| + virtual void frameDetached(blink::WebFrame* frame, DetachType type); |
|
Charlie Reis
2015/06/01 23:41:46
This doesn't look right to me for two reasons.
1)
dcheng
2015/06/02 00:21:51
There is no special rule for Blink types. In gener
Charlie Reis
2015/06/02 17:05:27
Ah, it's because all of these are subclasses of We
|
| virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); |
| virtual blink::WebNavigationPolicy decidePolicyForNavigation( |
| const NavigationPolicyInfo& info); |