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

Unified Diff: third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing aura problems Created 4 years, 5 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 | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/web/WebSelection.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h
diff --git a/third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h b/third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h
index f265d566c3a28d02a51806706287e0da6a904a44..a63da635d8170c34bfa16197ca65b994a989b4a3 100644
--- a/third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h
+++ b/third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h
@@ -48,6 +48,7 @@ struct CompositedSelection {
: type(NoSelection)
, isEditable(false)
, isEmptyTextFormControl(false)
+ , isHandleVisible(true)
{
}
@@ -56,6 +57,7 @@ struct CompositedSelection {
CompositedSelectionBound end;
bool isEditable;
bool isEmptyTextFormControl;
+ bool isHandleVisible;
aelias_OOO_until_Jul13 2016/08/02 18:30:33 I don't think this is needed. Just change FrameVi
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/web/WebSelection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698