diff options
author | Leon Scroggins <scroggo@google.com> | 2010-01-06 10:49:08 -0500 |
---|---|---|
committer | Leon Scroggins <scroggo@google.com> | 2010-01-06 14:43:13 -0500 |
commit | e5e9720d88df20ad1116d709ec078cec419ffcf4 (patch) | |
tree | 358f786db7eee325604410e6aef71889555b9b71 /WebKit/android/nav/CachedFrame.h | |
parent | 62d9c8e597ebe68adce93008597730a41a1d716b (diff) | |
download | external_webkit-e5e9720d88df20ad1116d709ec078cec419ffcf4.zip external_webkit-e5e9720d88df20ad1116d709ec078cec419ffcf4.tar.gz external_webkit-e5e9720d88df20ad1116d709ec078cec419ffcf4.tar.bz2 |
In findBestHitAt, set x and y to the intersection of slop and cursor.
Fixes http://b/issue?id=2201866
Diffstat (limited to 'WebKit/android/nav/CachedFrame.h')
-rw-r--r-- | WebKit/android/nav/CachedFrame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/nav/CachedFrame.h b/WebKit/android/nav/CachedFrame.h index f0996f7..7a00539 100644 --- a/WebKit/android/nav/CachedFrame.h +++ b/WebKit/android/nav/CachedFrame.h @@ -85,7 +85,7 @@ public: int* y, bool checkForHidden) const; const CachedFrame* findBestFrameAt(int x, int y) const; const CachedNode* findBestHitAt(const WebCore::IntRect& , - int* best, const CachedFrame** , int* x, int* y) const; + const CachedFrame** , int* x, int* y) const; void finishInit(); CachedFrame* firstChild() { return mCachedFrames.begin(); } const CachedFrame* firstChild() const { return mCachedFrames.begin(); } |