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

Unified Diff: Source/core/frame/FrameView.cpp

Issue 929213004: Plumb selection bounds as a single unit (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: TODO for moving WebSelectionBound Created 5 years, 8 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
« no previous file with comments | « Source/core/frame/FrameView.h ('k') | Source/core/layout/compositing/CompositedSelection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 48512865c6051b24c288d7d512a12251e1fe3d38..a75703a23109b8ed0044e6b4349cc016381bae64 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -44,6 +44,7 @@
#include "core/frame/Settings.h"
#include "core/html/HTMLFrameElement.h"
#include "core/html/HTMLPlugInElement.h"
+#include "core/html/HTMLTextFormControlElement.h"
#include "core/html/parser/TextResourceDecoder.h"
#include "core/inspector/InspectorInstrumentation.h"
#include "core/inspector/InspectorTraceEvents.h"
@@ -58,7 +59,7 @@
#include "core/layout/LayoutView.h"
#include "core/layout/TextAutosizer.h"
#include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h"
-#include "core/layout/compositing/CompositedSelectionBound.h"
+#include "core/layout/compositing/CompositedSelection.h"
#include "core/layout/compositing/DeprecatedPaintLayerCompositor.h"
#include "core/style/ComputedStyle.h"
#include "core/layout/svg/LayoutSVGRoot.h"
@@ -1685,39 +1686,39 @@ void FrameView::updateLayersAndCompositingAfterScrollIfNeeded()
}
}
-bool FrameView::computeCompositedSelectionBounds(LocalFrame& frame, CompositedSelectionBound& start, CompositedSelectionBound& end)
+bool FrameView::computeCompositedSelection(LocalFrame& frame, CompositedSelection& selection)
{
- const VisibleSelection &selection = frame.selection().selection();
- if (!selection.isCaretOrRange())
+ const VisibleSelection& visibleSelection = frame.selection().selection();
+ if (!visibleSelection.isCaretOrRange())
return false;
- VisiblePosition visibleStart(selection.visibleStart());
- VisiblePosition visibleEnd(selection.visibleEnd());
+ VisiblePosition visibleStart(visibleSelection.visibleStart());
+ VisiblePosition visibleEnd(visibleSelection.visibleEnd());
RenderedPosition renderedStart(visibleStart);
RenderedPosition renderedEnd(visibleEnd);
- renderedStart.positionInGraphicsLayerBacking(start);
- if (!start.layer)
+ renderedStart.positionInGraphicsLayerBacking(selection.start);
+ if (!selection.start.layer)
return false;
- renderedEnd.positionInGraphicsLayerBacking(end);
- if (!end.layer)
+ renderedEnd.positionInGraphicsLayerBacking(selection.end);
+ if (!selection.end.layer)
return false;
- if (selection.isCaret()) {
- start.type = end.type = CompositedSelectionBound::Caret;
- return true;
+ selection.type = visibleSelection.selectionType();
+ selection.isEditable = visibleSelection.isContentEditable();
+ if (selection.isEditable) {
+ if (HTMLTextFormControlElement* enclosingTextFormControlElement = enclosingTextFormControl(visibleSelection.rootEditableElement()))
+ selection.isEmptyTextFormControl = enclosingTextFormControlElement->value().isEmpty();
}
+ selection.start.isTextDirectionRTL = visibleStart.deepEquivalent().primaryDirection() == RTL;
+ selection.end.isTextDirectionRTL = visibleEnd.deepEquivalent().primaryDirection() == RTL;
- TextDirection startDir = visibleStart.deepEquivalent().primaryDirection();
- TextDirection endDir = visibleEnd.deepEquivalent().primaryDirection();
- start.type = startDir == RTL ? CompositedSelectionBound::SelectionRight : CompositedSelectionBound::SelectionLeft;
- end.type = endDir == RTL ? CompositedSelectionBound::SelectionLeft : CompositedSelectionBound::SelectionRight;
return true;
}
-void FrameView::updateCompositedSelectionBoundsIfNeeded()
+void FrameView::updateCompositedSelectionIfNeeded()
{
if (!RuntimeEnabledFeatures::compositedSelectionUpdateEnabled())
return;
@@ -1725,14 +1726,14 @@ void FrameView::updateCompositedSelectionBoundsIfNeeded()
Page* page = frame().page();
ASSERT(page);
- CompositedSelectionBound start, end;
+ CompositedSelection selection;
LocalFrame* frame = toLocalFrame(page->focusController().focusedOrMainFrame());
- if (!frame || !computeCompositedSelectionBounds(*frame, start, end)) {
- page->chrome().client().clearCompositedSelectionBounds();
+ if (!frame || !computeCompositedSelection(*frame, selection)) {
+ page->chrome().client().clearCompositedSelection();
return;
}
- page->chrome().client().updateCompositedSelectionBounds(start, end);
+ page->chrome().client().updateCompositedSelection(selection);
}
HostWindow* FrameView::hostWindow() const
@@ -2590,7 +2591,7 @@ void FrameView::updateLayoutAndStyleForPainting()
if (view->compositor()->inCompositingMode() && m_frame->isLocalRoot())
scrollingCoordinator()->updateAfterCompositingChangeIfNeeded();
- updateCompositedSelectionBoundsIfNeeded();
+ updateCompositedSelectionIfNeeded();
scrollContentsIfNeededRecursive();
« no previous file with comments | « Source/core/frame/FrameView.h ('k') | Source/core/layout/compositing/CompositedSelection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698