| 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 <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 WebKit::WebFrame* frame, | 538 WebKit::WebFrame* frame, |
| 539 WebKit::WebApplicationCacheHostClient* client); | 539 WebKit::WebApplicationCacheHostClient* client); |
| 540 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 540 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
| 541 virtual void didCreateFrame(WebKit::WebFrame* parent, | 541 virtual void didCreateFrame(WebKit::WebFrame* parent, |
| 542 WebKit::WebFrame* child); | 542 WebKit::WebFrame* child); |
| 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 didChangeName(WebKit::WebFrame* frame, | 546 virtual void didChangeName(WebKit::WebFrame* frame, |
| 547 const WebKit::WebString& name); | 547 const WebKit::WebString& name); |
| 548 virtual void cssMatches( |
| 549 WebKit::WebFrame* frame, |
| 550 const WebKit::WebVector<WebKit::WebString>& newlyMatchingSelectors, |
| 551 const WebKit::WebVector<WebKit::WebString>& stoppedMatchingSelectors); |
| 548 virtual void loadURLExternally(WebKit::WebFrame* frame, | 552 virtual void loadURLExternally(WebKit::WebFrame* frame, |
| 549 const WebKit::WebURLRequest& request, | 553 const WebKit::WebURLRequest& request, |
| 550 WebKit::WebNavigationPolicy policy); | 554 WebKit::WebNavigationPolicy policy); |
| 551 virtual void loadURLExternally(WebKit::WebFrame* frame, | 555 virtual void loadURLExternally(WebKit::WebFrame* frame, |
| 552 const WebKit::WebURLRequest& request, | 556 const WebKit::WebURLRequest& request, |
| 553 WebKit::WebNavigationPolicy policy, | 557 WebKit::WebNavigationPolicy policy, |
| 554 const WebKit::WebString& suggested_name); | 558 const WebKit::WebString& suggested_name); |
| 555 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( | 559 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( |
| 556 WebKit::WebFrame* frame, | 560 WebKit::WebFrame* frame, |
| 557 const WebKit::WebURLRequest& request, | 561 const WebKit::WebURLRequest& request, |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1603 // use the Observer interface to filter IPC messages and receive frame change | 1607 // use the Observer interface to filter IPC messages and receive frame change |
| 1604 // notifications. | 1608 // notifications. |
| 1605 // --------------------------------------------------------------------------- | 1609 // --------------------------------------------------------------------------- |
| 1606 | 1610 |
| 1607 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1611 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1608 }; | 1612 }; |
| 1609 | 1613 |
| 1610 } // namespace content | 1614 } // namespace content |
| 1611 | 1615 |
| 1612 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1616 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |