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

Unified Diff: third_party/WebKit/Source/core/dom/Node.h

Issue 2177783003: [Editing][DOM][CodeHealth] Move Node::*editable* functions to core/editing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: 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 d0d15f40de457e17cf5ec2e664d271e761c8b952..9045f603a3bd262bbc9384b239cc652bb20fa92f 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -854,15 +854,6 @@ inline ScriptWrappable* ScriptWrappable::fromNode(Node* node)
return node;
}
-// TODO(yoichio): Move to core/editing
-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);
-CORE_EXPORT bool isContentEditable(const Node&);
-CORE_EXPORT bool isContentRichlyEditable(const Node&);
-
// Allow equality comparisons of Nodes by reference or pointer, interchangeably.
DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Node)

Powered by Google App Engine
This is Rietveld 408576698