Index: third_party/WebKit/Source/core/dom/Node.h |
diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h |
index d911c98bb50e6b5b22966e5e5128dac3fec68c64..addb538b4909d69c240dfc13468c8b8d9c5faab4 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.h |
+++ b/third_party/WebKit/Source/core/dom/Node.h |
@@ -419,9 +419,6 @@ public: |
bool isContentEditable() const; |
bool isContentRichlyEditable() const; |
- bool hasEditableStyle(EditableType = ContentIsEditable) const; |
- bool layoutObjectIsRichlyEditable(EditableType = ContentIsEditable) const; |
- |
virtual LayoutRect boundingBox() const; |
IntRect pixelSnappedBoundingBox() const { return pixelSnappedIntRect(boundingBox()); } |
@@ -864,6 +861,8 @@ inline ScriptWrappable* ScriptWrappable::fromNode(Node* node) |
CORE_EXPORT bool isRootEditableElement(const Node&); |
CORE_EXPORT Element* rootEditableElement(const Node&); |
CORE_EXPORT Element* rootEditableElement(const Node&, EditableType); |
+CORE_EXPORT bool hasEditableStyle(const Node&, EditableType = ContentIsEditable); |
+CORE_EXPORT bool layoutObjectIsRichlyEditable(const Node&, EditableType = ContentIsEditable); |
// Allow equality comparisons of Nodes by reference or pointer, interchangeably. |
DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Node) |