OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "content/public/renderer/render_frame.h" | 9 #include "content/public/renderer/render_frame.h" |
10 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 WebKit::WebApplicationCacheHostClient* client); | 54 WebKit::WebApplicationCacheHostClient* client); |
55 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 55 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
56 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); | 56 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); |
57 virtual void didCreateFrame(WebKit::WebFrame* parent, | 57 virtual void didCreateFrame(WebKit::WebFrame* parent, |
58 WebKit::WebFrame* child); | 58 WebKit::WebFrame* child); |
59 virtual void didDisownOpener(WebKit::WebFrame* frame); | 59 virtual void didDisownOpener(WebKit::WebFrame* frame); |
60 virtual void frameDetached(WebKit::WebFrame* frame); | 60 virtual void frameDetached(WebKit::WebFrame* frame); |
61 virtual void willClose(WebKit::WebFrame* frame); | 61 virtual void willClose(WebKit::WebFrame* frame); |
62 virtual void didChangeName(WebKit::WebFrame* frame, | 62 virtual void didChangeName(WebKit::WebFrame* frame, |
63 const WebKit::WebString& name); | 63 const WebKit::WebString& name); |
| 64 virtual void didMatchCSS( |
| 65 WebKit::WebFrame* frame, |
| 66 const WebKit::WebVector<WebKit::WebString>& newly_matching_selectors, |
| 67 const WebKit::WebVector<WebKit::WebString>& stopped_matching_selectors); |
64 virtual void loadURLExternally(WebKit::WebFrame* frame, | 68 virtual void loadURLExternally(WebKit::WebFrame* frame, |
65 const WebKit::WebURLRequest& request, | 69 const WebKit::WebURLRequest& request, |
66 WebKit::WebNavigationPolicy policy); | 70 WebKit::WebNavigationPolicy policy); |
67 virtual void loadURLExternally( | 71 virtual void loadURLExternally( |
68 WebKit::WebFrame* frame, | 72 WebKit::WebFrame* frame, |
69 const WebKit::WebURLRequest& request, | 73 const WebKit::WebURLRequest& request, |
70 WebKit::WebNavigationPolicy policy, | 74 WebKit::WebNavigationPolicy policy, |
71 const WebKit::WebString& suggested_name); | 75 const WebKit::WebString& suggested_name); |
72 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( | 76 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( |
73 WebKit::WebFrame* frame, | 77 WebKit::WebFrame* frame, |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 int routing_id_; | 191 int routing_id_; |
188 bool is_swapped_out_; | 192 bool is_swapped_out_; |
189 bool is_detaching_; | 193 bool is_detaching_; |
190 | 194 |
191 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 195 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
192 }; | 196 }; |
193 | 197 |
194 } // namespace content | 198 } // namespace content |
195 | 199 |
196 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 200 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |