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

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: fixing clear handles Created 4 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: 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 c66633aa7f50bccca936394251f8cd5b43594f0c..fecee4a049d215532b8be42678ad893ff12d9736 100644
--- a/third_party/WebKit/Source/core/editing/SelectionController.h
+++ b/third_party/WebKit/Source/core/editing/SelectionController.h
@@ -28,6 +28,7 @@
#define SelectionController_h
#include "core/CoreExport.h"
+#include "core/editing/FrameSelection.h"
#include "core/editing/TextGranularity.h"
#include "core/editing/VisibleSelection.h"
#include "core/page/EventWithHitTestResults.h"
@@ -35,7 +36,6 @@
namespace blink {
-class FrameSelection;
class HitTestResult;
class LocalFrame;
@@ -107,11 +107,13 @@ class CORE_EXPORT SelectionController final
const MouseEventWithHitTestResults&);
void setNonDirectionalSelectionIfNeeded(const VisibleSelectionInFlatTree&,
TextGranularity,
- EndPointsAdjustmentMode);
+ EndPointsAdjustmentMode,
+ HandleVisibility);
bool updateSelectionForMouseDownDispatchingSelectStart(
Node*,
const VisibleSelectionInFlatTree&,
- TextGranularity);
+ TextGranularity,
+ HandleVisibility);
FrameSelection& selection() const;

Powered by Google App Engine
This is Rietveld 408576698