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

Side by Side Diff: third_party/WebKit/Source/core/editing/SelectionController.h

Issue 2048733002: Selecting with shift+drag results in unexpected drag-n-drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2015 Google Inc. All rights reserved. 3 * Copyright (C) 2015 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 Member<LocalFrame> const m_frame; 84 Member<LocalFrame> const m_frame;
85 bool m_mouseDownMayStartSelect; 85 bool m_mouseDownMayStartSelect;
86 bool m_mouseDownWasSingleClickInSelection; 86 bool m_mouseDownWasSingleClickInSelection;
87 bool m_mouseDownAllowsMultiClick; 87 bool m_mouseDownAllowsMultiClick;
88 enum class SelectionState { HaveNotStartedSelection, PlacedCaret, ExtendedSe lection }; 88 enum class SelectionState { HaveNotStartedSelection, PlacedCaret, ExtendedSe lection };
89 SelectionState m_selectionState; 89 SelectionState m_selectionState;
90 }; 90 };
91 91
92 bool isLinkSelection(const MouseEventWithHitTestResults&); 92 bool isLinkSelection(const MouseEventWithHitTestResults&);
93 bool isExtendingSelection(const MouseEventWithHitTestResults&);
93 94
94 } // namespace blink 95 } // namespace blink
95 96
96 #endif // SelectionController_h 97 #endif // SelectionController_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698