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

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

Issue 26237004: Remove unused editing related member functions from WebViewClient (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-10-09T17:59:14 Created 7 years, 2 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.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index c6f9227d4c0b070804ed6a19422e0f92215202f8..4809ce48ca19591939fa643cefdd356bb212a18e 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -304,12 +304,7 @@ static bool acceptsEditingFocus(Element* element)
ASSERT(element);
ASSERT(element->rendererIsEditable());
- Element* root = element->rootEditableElement();
- Frame* frame = element->document().frame();
- if (!frame || !root)
- return false;
-
- return frame->editor().shouldBeginEditing(rangeOfContents(root).get());
+ return element->document().frame() && element->rootEditableElement();
}
static bool canAccessAncestor(const SecurityOrigin* activeSecurityOrigin, Frame* targetFrame)
@@ -3312,9 +3307,6 @@ bool Document::setFocusedElement(PassRefPtr<Element> prpNewFocusedElement, Focus
newFocusedElement = 0;
}
- if (oldFocusedElement->isRootEditableElement())
- frame()->editor().didEndEditing();
-
if (view()) {
Widget* oldWidget = widgetForElement(oldFocusedElement.get());
if (oldWidget)
« no previous file with comments | « LayoutTests/platform/win/fast/forms/focus-selection-textarea-expected.txt ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698