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

Unified Diff: Source/core/dom/Document.h

Issue 334713006: Use stricter typing for NodeLists throughout the code base (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 3bb563310a5060d65c17d754a97c7798218e964d..825978c3882868e59e9691ee73aeaa81181806e9 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -334,20 +334,6 @@ public:
bool regionBasedColumnsEnabled() const;
- /**
- * Retrieve all nodes that intersect a rect in the window's document, until it is fully enclosed by
- * the boundaries of a node.
- *
- * @param centerX x reference for the rectangle in CSS pixels
- * @param centerY y reference for the rectangle in CSS pixels
- * @param topPadding How much to expand the top of the rectangle
- * @param rightPadding How much to expand the right of the rectangle
- * @param bottomPadding How much to expand the bottom of the rectangle
- * @param leftPadding How much to expand the left of the rectangle
- */
- PassRefPtrWillBeRawPtr<NodeList> nodesFromRect(int centerX, int centerY,
Inactive 2014/06/16 13:55:18 Dead code.
- unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding,
- HitTestRequest::HitTestRequestType hitType = HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::ConfusingAndOftenMisusedDisallowShadowContent) const;
Element* elementFromPoint(int x, int y) const;
PassRefPtrWillBeRawPtr<Range> caretRangeFromPoint(int x, int y);
@@ -1156,8 +1142,6 @@ private:
void executeScriptsWaitingForResourcesTimerFired(Timer<Document>*);
- PassRefPtrWillBeRawPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&) const;
Inactive 2014/06/16 13:55:17 Dead code.
-
void loadEventDelayTimerFired(Timer<Document>*);
void pluginLoadingTimerFired(Timer<Document>*);

Powered by Google App Engine
This is Rietveld 408576698