diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 21:56:31 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 21:56:31 +0000 |
commit | 199f2304434b798fd28fe09a437fbd3c78947031 (patch) | |
tree | acee6669653fb5fb1cf2024ab235446559baff2d /webkit/glue | |
parent | bd1b96700fa45143e04bd8d07a0a519d6962f4a6 (diff) | |
download | chromium_src-199f2304434b798fd28fe09a437fbd3c78947031.zip chromium_src-199f2304434b798fd28fe09a437fbd3c78947031.tar.gz chromium_src-199f2304434b798fd28fe09a437fbd3c78947031.tar.bz2 |
Roll WebKit to r45634 and fix build
Review URL: http://codereview.chromium.org/155241
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20196 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/webframeloaderclient_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webframeloaderclient_impl.cc b/webkit/glue/webframeloaderclient_impl.cc index 4276160..fcdb6a0 100644 --- a/webkit/glue/webframeloaderclient_impl.cc +++ b/webkit/glue/webframeloaderclient_impl.cc @@ -1493,11 +1493,11 @@ bool WebFrameLoaderClient::ActionSpecifiesDisposition( } NavigationGesture WebFrameLoaderClient::NavigationGestureForLastLoad() { - // TODO(timsteele): userGestureHint returns too many false positives + // TODO(timsteele): isProcessingUserGesture() returns too many false positives // (see bug 1051891) to trust it and assign NavigationGestureUser, so // for now we assign Unknown in those cases and Auto otherwise. // (Issue 874811 known false negative as well). - return webframe_->frame()->loader()->userGestureHint() ? + return webframe_->frame()->loader()->isProcessingUserGesture() ? NavigationGestureUnknown : NavigationGestureAuto; } |