OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 | 536 |
537 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 537 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
538 WebKit::WebFrame* frame, | 538 WebKit::WebFrame* frame, |
539 const WebKit::WebURL& url, | 539 const WebKit::WebURL& url, |
540 WebKit::WebMediaPlayerClient* client); | 540 WebKit::WebMediaPlayerClient* client); |
541 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 541 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
542 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); | 542 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); |
543 virtual void didDisownOpener(WebKit::WebFrame* frame); | 543 virtual void didDisownOpener(WebKit::WebFrame* frame); |
544 virtual void frameDetached(WebKit::WebFrame* frame); | 544 virtual void frameDetached(WebKit::WebFrame* frame); |
545 virtual void willClose(WebKit::WebFrame* frame); | 545 virtual void willClose(WebKit::WebFrame* frame); |
| 546 virtual void didMatchCSS( |
| 547 WebKit::WebFrame* frame, |
| 548 const WebKit::WebVector<WebKit::WebString>& newly_matching_selectors, |
| 549 const WebKit::WebVector<WebKit::WebString>& stopped_matching_selectors); |
546 | 550 |
547 // The WebDataSource::ExtraData* is assumed to be a DocumentState* subclass. | 551 // The WebDataSource::ExtraData* is assumed to be a DocumentState* subclass. |
548 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( | 552 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( |
549 WebKit::WebFrame* frame, | 553 WebKit::WebFrame* frame, |
550 WebKit::WebDataSource::ExtraData* extraData, | 554 WebKit::WebDataSource::ExtraData* extraData, |
551 const WebKit::WebURLRequest& request, | 555 const WebKit::WebURLRequest& request, |
552 WebKit::WebNavigationType type, | 556 WebKit::WebNavigationType type, |
553 WebKit::WebNavigationPolicy default_policy, | 557 WebKit::WebNavigationPolicy default_policy, |
554 bool is_redirect); | 558 bool is_redirect); |
555 // DEPRECATED. | 559 // DEPRECATED. |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1532 // use the Observer interface to filter IPC messages and receive frame change | 1536 // use the Observer interface to filter IPC messages and receive frame change |
1533 // notifications. | 1537 // notifications. |
1534 // --------------------------------------------------------------------------- | 1538 // --------------------------------------------------------------------------- |
1535 | 1539 |
1536 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1540 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1537 }; | 1541 }; |
1538 | 1542 |
1539 } // namespace content | 1543 } // namespace content |
1540 | 1544 |
1541 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1545 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |