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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 WebKit::WebMediaPlayerClient* client); | 529 WebKit::WebMediaPlayerClient* client); |
530 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 530 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
531 WebKit::WebFrame* frame, | 531 WebKit::WebFrame* frame, |
532 WebKit::WebApplicationCacheHostClient* client); | 532 WebKit::WebApplicationCacheHostClient* client); |
533 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 533 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
534 virtual void didCreateFrame(WebKit::WebFrame* parent, | 534 virtual void didCreateFrame(WebKit::WebFrame* parent, |
535 WebKit::WebFrame* child); | 535 WebKit::WebFrame* child); |
536 virtual void didDisownOpener(WebKit::WebFrame* frame); | 536 virtual void didDisownOpener(WebKit::WebFrame* frame); |
537 virtual void frameDetached(WebKit::WebFrame* frame); | 537 virtual void frameDetached(WebKit::WebFrame* frame); |
538 virtual void willClose(WebKit::WebFrame* frame); | 538 virtual void willClose(WebKit::WebFrame* frame); |
| 539 virtual void didChangeName(WebKit::WebFrame* frame, |
| 540 const WebKit::WebString& name); |
539 virtual void loadURLExternally(WebKit::WebFrame* frame, | 541 virtual void loadURLExternally(WebKit::WebFrame* frame, |
540 const WebKit::WebURLRequest& request, | 542 const WebKit::WebURLRequest& request, |
541 WebKit::WebNavigationPolicy policy); | 543 WebKit::WebNavigationPolicy policy); |
542 virtual void loadURLExternally(WebKit::WebFrame* frame, | 544 virtual void loadURLExternally(WebKit::WebFrame* frame, |
543 const WebKit::WebURLRequest& request, | 545 const WebKit::WebURLRequest& request, |
544 WebKit::WebNavigationPolicy policy, | 546 WebKit::WebNavigationPolicy policy, |
545 const WebKit::WebString& suggested_name); | 547 const WebKit::WebString& suggested_name); |
546 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( | 548 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( |
547 WebKit::WebFrame* frame, | 549 WebKit::WebFrame* frame, |
548 const WebKit::WebURLRequest& request, | 550 const WebKit::WebURLRequest& request, |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 void OnClosePage(); | 918 void OnClosePage(); |
917 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 919 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
918 void OnCopy(); | 920 void OnCopy(); |
919 void OnCopyImageAt(int x, int y); | 921 void OnCopyImageAt(int x, int y); |
920 void OnCut(); | 922 void OnCut(); |
921 void OnCSSInsertRequest(const string16& frame_xpath, | 923 void OnCSSInsertRequest(const string16& frame_xpath, |
922 const std::string& css); | 924 const std::string& css); |
923 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 925 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
924 unsigned action); | 926 unsigned action); |
925 void OnDelete(); | 927 void OnDelete(); |
| 928 void OnSetName(const std::string& name); |
926 void OnDeterminePageLanguage(); | 929 void OnDeterminePageLanguage(); |
927 void OnDisableScrollbarsForSmallWindows( | 930 void OnDisableScrollbarsForSmallWindows( |
928 const gfx::Size& disable_scrollbars_size_limit); | 931 const gfx::Size& disable_scrollbars_size_limit); |
929 void OnDisassociateFromPopupCount(); | 932 void OnDisassociateFromPopupCount(); |
930 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 933 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
931 const gfx::Point& screen_point, | 934 const gfx::Point& screen_point, |
932 bool ended, | 935 bool ended, |
933 WebKit::WebDragOperation drag_operation); | 936 WebKit::WebDragOperation drag_operation); |
934 void OnDragSourceSystemDragEnded(); | 937 void OnDragSourceSystemDragEnded(); |
935 void OnDragTargetDrop(const gfx::Point& client_pt, | 938 void OnDragTargetDrop(const gfx::Point& client_pt, |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1587 // use the Observer interface to filter IPC messages and receive frame change | 1590 // use the Observer interface to filter IPC messages and receive frame change |
1588 // notifications. | 1591 // notifications. |
1589 // --------------------------------------------------------------------------- | 1592 // --------------------------------------------------------------------------- |
1590 | 1593 |
1591 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1594 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1592 }; | 1595 }; |
1593 | 1596 |
1594 } // namespace content | 1597 } // namespace content |
1595 | 1598 |
1596 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1599 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |