Index: third_party/WebKit/Source/core/dom/Element.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp |
index a6e0c638155848cc910b4d7e1efcfcdd6141cc05..44ea3d5ebe715453a7c4f89602bdd13c5cfe776d 100644 |
--- a/third_party/WebKit/Source/core/dom/Element.cpp |
+++ b/third_party/WebKit/Source/core/dom/Element.cpp |
@@ -2792,11 +2792,16 @@ void Element::releasePointerCapture(int pointerId, ExceptionState& exceptionStat |
} |
} |
-bool Element::hasPointerCapture(int pointerId) |
+bool Element::hasPointerCapture(int pointerId) const |
{ |
return document().frame() && document().frame()->eventHandler().hasPointerCapture(pointerId, this); |
} |
+bool Element::hasProcessedPointerCapture(int pointerId) const |
+{ |
+ return document().frame() && document().frame()->eventHandler().hasProcessedPointerCapture(pointerId, this); |
+} |
+ |
String Element::innerText() |
{ |
// We need to update layout, since plainText uses line boxes in the layout tree. |