Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: Source/core/page/TouchDisambiguation.cpp

Issue 1148813007: Move EventHandler from core/page/ to core/input (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove unnecessary file Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 32
33 #include "core/page/TouchDisambiguation.h" 33 #include "core/page/TouchDisambiguation.h"
34 34
35 #include "core/HTMLNames.h" 35 #include "core/HTMLNames.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/dom/Element.h" 37 #include "core/dom/Element.h"
38 #include "core/dom/NodeTraversal.h" 38 #include "core/dom/NodeTraversal.h"
39 #include "core/frame/FrameView.h" 39 #include "core/frame/FrameView.h"
40 #include "core/frame/LocalFrame.h" 40 #include "core/frame/LocalFrame.h"
41 #include "core/html/HTMLHtmlElement.h" 41 #include "core/html/HTMLHtmlElement.h"
42 #include "core/input/EventHandler.h"
42 #include "core/layout/HitTestResult.h" 43 #include "core/layout/HitTestResult.h"
43 #include "core/layout/LayoutBlock.h" 44 #include "core/layout/LayoutBlock.h"
44 #include "core/page/EventHandler.h"
45 #include <algorithm> 45 #include <algorithm>
46 #include <cmath> 46 #include <cmath>
47 47
48 namespace blink { 48 namespace blink {
49 49
50 static IntRect boundingBoxForEventNodes(Node* eventNode) 50 static IntRect boundingBoxForEventNodes(Node* eventNode)
51 { 51 {
52 if (!eventNode->document().view()) 52 if (!eventNode->document().view())
53 return IntRect(); 53 return IntRect();
54 54
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 // Currently the scoring function uses the overlap area with the fat poi nt as the score. 140 // Currently the scoring function uses the overlap area with the fat poi nt as the score.
141 // We ignore the candidates that has less than 1/2 overlap (we consider not really ambiguous enough) than the best candidate to avoid excessive popups. 141 // We ignore the candidates that has less than 1/2 overlap (we consider not really ambiguous enough) than the best candidate to avoid excessive popups.
142 if (touchTarget.value.score < bestScore * 0.5) 142 if (touchTarget.value.score < bestScore * 0.5)
143 continue; 143 continue;
144 goodTargets.append(touchTarget.value.windowBoundingBox); 144 goodTargets.append(touchTarget.value.windowBoundingBox);
145 highlightNodes.append(touchTarget.key); 145 highlightNodes.append(touchTarget.key);
146 } 146 }
147 } 147 }
148 148
149 } // namespace blink 149 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/page/FocusController.cpp ('k') | Source/core/paint/DeprecatedPaintLayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698