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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index bd61b92bb6c5ec2c0e897244368c10488b2bc6fa..fb6d2d142f73407609df90b0acbedf655cc0b2da 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -521,6 +521,8 @@ class CONTENT_EXPORT RenderViewImpl
virtual void didDisownOpener(WebKit::WebFrame* frame);
virtual void frameDetached(WebKit::WebFrame* frame);
virtual void willClose(WebKit::WebFrame* frame);
+ virtual void didChangeName(WebKit::WebFrame* frame,
+ const WebKit::WebString& name);
virtual void loadURLExternally(WebKit::WebFrame* frame,
const WebKit::WebURLRequest& request,
WebKit::WebNavigationPolicy policy);
@@ -907,6 +909,7 @@ class CONTENT_EXPORT RenderViewImpl
void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context,
unsigned action);
void OnDelete();
+ void OnSetName(const std::string& name);
void OnDeterminePageLanguage();
void OnDisableScrollbarsForSmallWindows(
const gfx::Size& disable_scrollbars_size_limit);

Powered by Google App Engine
This is Rietveld 408576698