diff options
author | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-09 02:49:25 +0000 |
---|---|---|
committer | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-09 02:49:25 +0000 |
commit | 25bcc8ff25d5b94b84782783fc762a635d7b23d6 (patch) | |
tree | bc9236fdd4d639736778720bd5c468d03c6d03e6 /content/browser/browser_plugin/browser_plugin_guest_helper.cc | |
parent | 726ecd2526de747aa613daa6dffe4f2524bb6de8 (diff) | |
download | chromium_src-25bcc8ff25d5b94b84782783fc762a635d7b23d6.zip chromium_src-25bcc8ff25d5b94b84782783fc762a635d7b23d6.tar.gz chromium_src-25bcc8ff25d5b94b84782783fc762a635d7b23d6.tar.bz2 |
<webview>: Add name attribute
This change requires this WebKit patch: https://bugs.webkit.org/show_bug.cgi?id=104404
This change enables access to the guest's window's name attribute from the embedder <webview>. It also enables changes to the window name attribute from the embedder WebContents.
BUG=140316
Test=BrowserPluginHostTest.ChangeWindowName
Review URL: https://codereview.chromium.org/11554030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175681 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/browser_plugin/browser_plugin_guest_helper.cc')
-rw-r--r-- | content/browser/browser_plugin/browser_plugin_guest_helper.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/browser/browser_plugin/browser_plugin_guest_helper.cc b/content/browser/browser_plugin/browser_plugin_guest_helper.cc index 85c6a1a..5a9d6e0 100644 --- a/content/browser/browser_plugin/browser_plugin_guest_helper.cc +++ b/content/browser/browser_plugin/browser_plugin_guest_helper.cc @@ -41,6 +41,7 @@ bool BrowserPluginGuestHelper::ShouldForwardToBrowserPluginGuest( #endif case ViewHostMsg_ShowWidget::ID: case ViewHostMsg_TakeFocus::ID: + case ViewHostMsg_UpdateFrameName::ID: case ViewHostMsg_UpdateRect::ID: return true; default: |