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

Unified Diff: third_party/WebKit/Source/core/editing/SelectionController.h

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed incorrect rebase Created 3 years, 11 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/editing/SelectionController.h
diff --git a/third_party/WebKit/Source/core/editing/SelectionController.h b/third_party/WebKit/Source/core/editing/SelectionController.h
index 2fee805214178491ffee76029962e7e5967347d3..8d847cca22f63712a666fb87179168087a321058 100644
--- a/third_party/WebKit/Source/core/editing/SelectionController.h
+++ b/third_party/WebKit/Source/core/editing/SelectionController.h
@@ -29,6 +29,7 @@
#include "core/CoreExport.h"
#include "core/dom/SynchronousMutationObserver.h"
+#include "core/editing/FrameSelection.h"
#include "core/editing/TextGranularity.h"
#include "core/editing/VisibleSelection.h"
#include "core/page/EventWithHitTestResults.h"
@@ -36,7 +37,6 @@
namespace blink {
-class FrameSelection;
class HitTestResult;
class LocalFrame;
@@ -112,12 +112,14 @@ class CORE_EXPORT SelectionController final
const MouseEventWithHitTestResults&);
void setNonDirectionalSelectionIfNeeded(const VisibleSelectionInFlatTree&,
TextGranularity,
- EndPointsAdjustmentMode);
+ EndPointsAdjustmentMode,
+ HandleVisibility);
void setCaretAtHitTestResult(const HitTestResult&);
bool updateSelectionForMouseDownDispatchingSelectStart(
Node*,
const VisibleSelectionInFlatTree&,
- TextGranularity);
+ TextGranularity,
+ HandleVisibility);
FrameSelection& selection() const;

Powered by Google App Engine
This is Rietveld 408576698