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

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

Issue 334223005: Qualify the generated includes in core (part 6) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 14 matching lines...) Expand all
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 32
33 #include "core/page/TouchDisambiguation.h" 33 #include "core/page/TouchDisambiguation.h"
34 34
35 #include <algorithm> 35 #include "core/HTMLNames.h"
36 #include <cmath>
37 #include "HTMLNames.h"
38 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
39 #include "core/dom/Element.h" 37 #include "core/dom/Element.h"
40 #include "core/dom/NodeTraversal.h" 38 #include "core/dom/NodeTraversal.h"
41 #include "core/frame/FrameView.h" 39 #include "core/frame/FrameView.h"
42 #include "core/frame/LocalFrame.h" 40 #include "core/frame/LocalFrame.h"
43 #include "core/html/HTMLHtmlElement.h" 41 #include "core/html/HTMLHtmlElement.h"
44 #include "core/page/EventHandler.h" 42 #include "core/page/EventHandler.h"
45 #include "core/rendering/HitTestResult.h" 43 #include "core/rendering/HitTestResult.h"
46 #include "core/rendering/RenderBlock.h" 44 #include "core/rendering/RenderBlock.h"
45 #include <algorithm>
46 #include <cmath>
47 47
48 namespace WebCore { 48 namespace WebCore {
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
55 IntRect result; 55 IntRect result;
56 Node* node = eventNode; 56 Node* node = eventNode;
(...skipping 83 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 (it->value.score < bestScore * 0.5) 142 if (it->value.score < bestScore * 0.5)
143 continue; 143 continue;
144 goodTargets.append(it->value.windowBoundingBox); 144 goodTargets.append(it->value.windowBoundingBox);
145 highlightNodes.append(it->key); 145 highlightNodes.append(it->key);
146 } 146 }
147 } 147 }
148 148
149 } // namespace WebCore 149 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/SpatialNavigation.cpp ('k') | Source/core/page/scrolling/ScrollingCoordinator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698