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

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: Fix copyright Created 5 years, 9 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/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 0e19021b2ad3a32e2b34404f9f66cd7904a33655..bbb5088ad0f0a388ae93b93999f14dc71dd0b85c 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/CompositedLayerMapping.h"
-#include "core/layout/compositing/CompositedSelectionBound.h"
+#include "core/layout/compositing/CompositedSelectionBounds.h"
#include "core/layout/compositing/LayerCompositor.h"
#include "core/layout/style/LayoutStyle.h"
#include "core/layout/svg/LayoutSVGRoot.h"
@@ -1645,7 +1646,7 @@ void FrameView::updateLayersAndCompositingAfterScrollIfNeeded()
}
}
-bool FrameView::computeCompositedSelectionBounds(LocalFrame& frame, CompositedSelectionBound& start, CompositedSelectionBound& end)
+bool FrameView::computeCompositedSelectionBounds(LocalFrame& frame, CompositedSelectionBounds& bounds)
{
const VisibleSelection &selection = frame.selection().selection();
if (!selection.isCaretOrRange())
@@ -1657,23 +1658,29 @@ bool FrameView::computeCompositedSelectionBounds(LocalFrame& frame, CompositedSe
RenderedPosition renderedStart(visibleStart);
RenderedPosition renderedEnd(visibleEnd);
- renderedStart.positionInGraphicsLayerBacking(start);
- if (!start.layer)
+ renderedStart.positionInGraphicsLayerBacking(bounds.start);
+ if (!bounds.start.layer)
return false;
- renderedEnd.positionInGraphicsLayerBacking(end);
- if (!end.layer)
+ renderedEnd.positionInGraphicsLayerBacking(bounds.end);
+ if (!bounds.end.layer)
return false;
+ bounds.isEditable = selection.isContentEditable();
Rick Byers 2015/03/12 19:27:24 does isContentEditable really return true for the
jdduke (slow) 2015/03/16 18:15:41 Hmm, it appears to, yes. One odd thing that I noti
+ if (bounds.isEditable) {
+ if (HTMLTextFormControlElement* enclosingTextFormControlElement = enclosingTextFormControl(selection.rootEditableElement()))
+ bounds.isEditableRegionEmpty = enclosingTextFormControlElement->value().isEmpty();
jdduke (slow) 2015/03/12 18:18:38 If there's a better way of determining this, pleas
Rick Byers 2015/03/12 19:27:23 not sure off hand. yosin@? Does this handle the
yosin_UTC9 2015/03/13 02:06:37 Short answer is "yes". Long answer is "case by cas
jdduke (slow) 2015/03/16 18:15:41 Sure. We need to know whether to display a text in
yosin_UTC9 2015/03/18 05:15:41 How about calling |isContentEdtiable()| if |select
jdduke (slow) 2015/03/18 20:20:45 That's one option. I think what we want is for thi
+ }
+
if (selection.isCaret()) {
- start.type = end.type = CompositedSelectionBound::Caret;
+ bounds.start.type = bounds.end.type = CompositedSelectionBound::Caret;
return true;
}
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;
+ bounds.start.type = startDir == RTL ? CompositedSelectionBound::SelectionRight : CompositedSelectionBound::SelectionLeft;
+ bounds.end.type = endDir == RTL ? CompositedSelectionBound::SelectionLeft : CompositedSelectionBound::SelectionRight;
return true;
}
@@ -1685,14 +1692,14 @@ void FrameView::updateCompositedSelectionBoundsIfNeeded()
Page* page = frame().page();
ASSERT(page);
- CompositedSelectionBound start, end;
+ CompositedSelectionBounds bounds;
LocalFrame* frame = toLocalFrame(page->focusController().focusedOrMainFrame());
- if (!frame || !computeCompositedSelectionBounds(*frame, start, end)) {
+ if (!frame || !computeCompositedSelectionBounds(*frame, bounds)) {
page->chrome().client().clearCompositedSelectionBounds();
return;
}
- page->chrome().client().updateCompositedSelectionBounds(start, end);
+ page->chrome().client().updateCompositedSelectionBounds(bounds);
}
HostWindow* FrameView::hostWindow() const

Powered by Google App Engine
This is Rietveld 408576698