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

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 line length Created 4 years, 1 month 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 d93bbac0fe9831188f85b010bc667907c4df529e..499e050f3cdf03d83535290aa2359eac3087772f 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;
@@ -113,12 +113,14 @@ class CORE_EXPORT SelectionController final
const MouseEventWithHitTestResults&);
void setNonDirectionalSelectionIfNeeded(const VisibleSelectionInFlatTree&,
TextGranularity,
- EndPointsAdjustmentMode);
+ EndPointsAdjustmentMode,
+ HandleVisibility);
bool setCaretAtHitTestResult(const HitTestResult&);
bool updateSelectionForMouseDownDispatchingSelectStart(
Node*,
const VisibleSelectionInFlatTree&,
- TextGranularity);
+ TextGranularity,
+ HandleVisibility);
FrameSelection& selection() const;

Powered by Google App Engine
This is Rietveld 408576698