| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index 351cab7231663cfc7ef1ed557ca2d74c52540a57..f909c27562a9d5046de3342b79526ae99af51e07 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -2031,6 +2031,11 @@ WebLocalFrameImpl* WebLocalFrameImpl::LocalRoot() {
|
| return local_root;
|
| }
|
|
|
| +WebFrame* WebLocalFrameImpl::FindFrameByName(const WebString& name) {
|
| + Frame* result = GetFrame()->Tree().Find(name);
|
| + return WebFrame::FromFrame(result);
|
| +}
|
| +
|
| void WebLocalFrameImpl::SendPings(const WebURL& destination_url) {
|
| DCHECK(GetFrame());
|
| DCHECK(context_menu_node_.Get());
|
|
|