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

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

Issue 2691583003: Removed fields from Selection classes (Closed)
Patch Set: Forgot to remove fields from test Created 3 years, 10 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 207274f124cea1c9178f08857130f8b1aa649b16..88f7add3210183a8cfc5a55c36475d53ecd428ec 100644
--- a/third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h
+++ b/third_party/WebKit/Source/core/layout/compositing/CompositedSelection.h
@@ -44,14 +44,11 @@ namespace blink {
// See |WebSelection|.
struct CompositedSelection {
STACK_ALLOCATED();
- CompositedSelection()
- : type(NoSelection), isEditable(false), isEmptyTextControl(false) {}
+ CompositedSelection() : type(NoSelection) {}
SelectionType type;
CompositedSelectionBound start;
CompositedSelectionBound end;
- bool isEditable;
- bool isEmptyTextControl;
};
} // 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