Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/Document.h |
| diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h |
| index 47df5cc4ba95ff8578e3cfaab36c464463590075..6d838180fcfdffb342c8864018f4c3a4acd2781e 100644 |
| --- a/third_party/WebKit/Source/core/dom/Document.h |
| +++ b/third_party/WebKit/Source/core/dom/Document.h |
| @@ -344,6 +344,9 @@ class CORE_EXPORT Document : public ContainerNode, |
| HeapVector<Member<Element>> elementsFromPoint(int x, int y) const; |
| Range* caretRangeFromPoint(int x, int y); |
| Element* scrollingElement(); |
| + // When calling from C++ code, use this method. scrollingElement() is |
| + // just for the web IDL implementation. |
| + Element* scrollingElementInternal(); |
|
wkorman
2017/01/11 03:56:39
Wondering if there is a better name, since isn't u
chrishtr
2017/01/11 04:09:09
Done.
|
| void addStyleReattachData(Node&, StyleReattachData&); |
| StyleReattachData getStyleReattachData(Node&); |