| 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 0b5db4345b09c172ed0ced603228f3cc9fae5721..fa8680ad832bbe4e3bc47c0a3548e81272aec089 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -2084,6 +2084,11 @@ void WebLocalFrameImpl::setCommittedFirstRealLoad() {
|
| ensureFrameLoaderHasCommitted(frame()->loader());
|
| }
|
|
|
| +void WebLocalFrameImpl::setHasReceivedUserGesture() {
|
| + if (frame())
|
| + frame()->document()->setHasReceivedUserGesture();
|
| +}
|
| +
|
| void WebLocalFrameImpl::sendOrientationChangeEvent() {
|
| if (!frame())
|
| return;
|
|
|