Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 11554030: <webview>: Add name attribute (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added tests Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 WebKit::WebMediaPlayerClient* client); 514 WebKit::WebMediaPlayerClient* client);
515 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 515 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
516 WebKit::WebFrame* frame, 516 WebKit::WebFrame* frame,
517 WebKit::WebApplicationCacheHostClient* client); 517 WebKit::WebApplicationCacheHostClient* client);
518 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 518 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
519 virtual void didCreateFrame(WebKit::WebFrame* parent, 519 virtual void didCreateFrame(WebKit::WebFrame* parent,
520 WebKit::WebFrame* child); 520 WebKit::WebFrame* child);
521 virtual void didDisownOpener(WebKit::WebFrame* frame); 521 virtual void didDisownOpener(WebKit::WebFrame* frame);
522 virtual void frameDetached(WebKit::WebFrame* frame); 522 virtual void frameDetached(WebKit::WebFrame* frame);
523 virtual void willClose(WebKit::WebFrame* frame); 523 virtual void willClose(WebKit::WebFrame* frame);
524 virtual void didChangeName(WebKit::WebFrame* frame,
525 const WebKit::WebString& name);
524 virtual void loadURLExternally(WebKit::WebFrame* frame, 526 virtual void loadURLExternally(WebKit::WebFrame* frame,
525 const WebKit::WebURLRequest& request, 527 const WebKit::WebURLRequest& request,
526 WebKit::WebNavigationPolicy policy); 528 WebKit::WebNavigationPolicy policy);
527 virtual void loadURLExternally(WebKit::WebFrame* frame, 529 virtual void loadURLExternally(WebKit::WebFrame* frame,
528 const WebKit::WebURLRequest& request, 530 const WebKit::WebURLRequest& request,
529 WebKit::WebNavigationPolicy policy, 531 WebKit::WebNavigationPolicy policy,
530 const WebKit::WebString& suggested_name); 532 const WebKit::WebString& suggested_name);
531 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( 533 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation(
532 WebKit::WebFrame* frame, 534 WebKit::WebFrame* frame,
533 const WebKit::WebURLRequest& request, 535 const WebKit::WebURLRequest& request,
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 void OnClosePage(); 902 void OnClosePage();
901 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); 903 void OnContextMenuClosed(const CustomContextMenuContext& custom_context);
902 void OnCopy(); 904 void OnCopy();
903 void OnCopyImageAt(int x, int y); 905 void OnCopyImageAt(int x, int y);
904 void OnCut(); 906 void OnCut();
905 void OnCSSInsertRequest(const string16& frame_xpath, 907 void OnCSSInsertRequest(const string16& frame_xpath,
906 const std::string& css); 908 const std::string& css);
907 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, 909 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context,
908 unsigned action); 910 unsigned action);
909 void OnDelete(); 911 void OnDelete();
912 void OnSetName(const std::string& name);
910 void OnDeterminePageLanguage(); 913 void OnDeterminePageLanguage();
911 void OnDisableScrollbarsForSmallWindows( 914 void OnDisableScrollbarsForSmallWindows(
912 const gfx::Size& disable_scrollbars_size_limit); 915 const gfx::Size& disable_scrollbars_size_limit);
913 void OnDisassociateFromPopupCount(); 916 void OnDisassociateFromPopupCount();
914 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, 917 void OnDragSourceEndedOrMoved(const gfx::Point& client_point,
915 const gfx::Point& screen_point, 918 const gfx::Point& screen_point,
916 bool ended, 919 bool ended,
917 WebKit::WebDragOperation drag_operation); 920 WebKit::WebDragOperation drag_operation);
918 void OnDragSourceSystemDragEnded(); 921 void OnDragSourceSystemDragEnded();
919 void OnDragTargetDrop(const gfx::Point& client_pt, 922 void OnDragTargetDrop(const gfx::Point& client_pt,
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 // use the Observer interface to filter IPC messages and receive frame change 1563 // use the Observer interface to filter IPC messages and receive frame change
1561 // notifications. 1564 // notifications.
1562 // --------------------------------------------------------------------------- 1565 // ---------------------------------------------------------------------------
1563 1566
1564 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1567 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1565 }; 1568 };
1566 1569
1567 } // namespace content 1570 } // namespace content
1568 1571
1569 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1572 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698