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

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: Merged with ToT and back to plumbing directly to BrowserPlugin instead of through WebContents Created 7 years, 11 months 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 void OnClosePage(); 917 void OnClosePage();
916 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); 918 void OnContextMenuClosed(const CustomContextMenuContext& custom_context);
917 void OnCopy(); 919 void OnCopy();
918 void OnCopyImageAt(int x, int y); 920 void OnCopyImageAt(int x, int y);
919 void OnCut(); 921 void OnCut();
920 void OnCSSInsertRequest(const string16& frame_xpath, 922 void OnCSSInsertRequest(const string16& frame_xpath,
921 const std::string& css); 923 const std::string& css);
922 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, 924 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context,
923 unsigned action); 925 unsigned action);
924 void OnDelete(); 926 void OnDelete();
927 void OnSetName(const std::string& name);
925 void OnDeterminePageLanguage(); 928 void OnDeterminePageLanguage();
926 void OnDisableScrollbarsForSmallWindows( 929 void OnDisableScrollbarsForSmallWindows(
927 const gfx::Size& disable_scrollbars_size_limit); 930 const gfx::Size& disable_scrollbars_size_limit);
928 void OnDisassociateFromPopupCount(); 931 void OnDisassociateFromPopupCount();
929 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, 932 void OnDragSourceEndedOrMoved(const gfx::Point& client_point,
930 const gfx::Point& screen_point, 933 const gfx::Point& screen_point,
931 bool ended, 934 bool ended,
932 WebKit::WebDragOperation drag_operation); 935 WebKit::WebDragOperation drag_operation);
933 void OnDragSourceSystemDragEnded(); 936 void OnDragSourceSystemDragEnded();
934 void OnDragTargetDrop(const gfx::Point& client_pt, 937 void OnDragTargetDrop(const gfx::Point& client_pt,
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 // use the Observer interface to filter IPC messages and receive frame change 1589 // use the Observer interface to filter IPC messages and receive frame change
1587 // notifications. 1590 // notifications.
1588 // --------------------------------------------------------------------------- 1591 // ---------------------------------------------------------------------------
1589 1592
1590 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1593 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1591 }; 1594 };
1592 1595
1593 } // namespace content 1596 } // namespace content
1594 1597
1595 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1598 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698