| Index: third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/FrameSelection.cpp b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| index cd529ad899a1cdf79ec9ede0af93f9715a900b41..9493c9fce540591bb20f65d672e842e65bb96cc3 100644
|
| --- a/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| @@ -1164,8 +1164,8 @@ void FrameSelection::ClearDocumentCachedRange() {
|
| selection_editor_->ClearDocumentCachedRange();
|
| }
|
|
|
| -void FrameSelection::LayoutSelectionStartEnd(int& start_pos, int& end_pos) {
|
| - layout_selection_->SelectionStartEnd(start_pos, end_pos);
|
| +std::pair<int, int> FrameSelection::LayoutSelectionStartEnd() {
|
| + return layout_selection_->SelectionStartEnd();
|
| }
|
|
|
| void FrameSelection::ClearLayoutSelection() {
|
|
|