| Index: third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/SelectionController.cpp b/third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| index c6fe984eca1f870dd37f2da56752814a80b9da01..d375014e35e1a37ccfc79c1136c8b821457722ac 100644
|
| --- a/third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| @@ -608,7 +608,7 @@ void SelectionController::sendContextMenuEvent(const MouseEventWithHitTestResult
|
| return;
|
|
|
| // Context menu events are always allowed to perform a selection.
|
| - TemporaryChange<bool> mouseDownMayStartSelectChange(m_mouseDownMayStartSelect, true);
|
| + TemporaryChange<bool> mouseDownMayStartSelectChange(&m_mouseDownMayStartSelect, true);
|
|
|
| if (mev.hitTestResult().isMisspelled())
|
| return selectClosestMisspellingFromMouseEvent(mev);
|
|
|