| Index: content/browser/renderer_host/input/stylus_text_selector_unittest.cc
|
| diff --git a/content/browser/renderer_host/input/stylus_text_selector_unittest.cc b/content/browser/renderer_host/input/stylus_text_selector_unittest.cc
|
| index 41be0954cc59c9576329ecadb942296008ba77e3..9097947f2c625e91cc0d160870f07dbe7a56f887 100644
|
| --- a/content/browser/renderer_host/input/stylus_text_selector_unittest.cc
|
| +++ b/content/browser/renderer_host/input/stylus_text_selector_unittest.cc
|
| @@ -50,7 +50,9 @@ class StylusTextSelectorTest : public testing::Test,
|
| event_log_.push_back(ss.str());
|
| }
|
|
|
| - void OnStylusSelectEnd() override { event_log_.push_back("End"); }
|
| + void OnStylusSelectEnd(float x, float y) override {
|
| + event_log_.push_back("End");
|
| + }
|
|
|
| void OnStylusSelectTap(base::TimeTicks time, float x, float y) override {
|
| event_log_.push_back("Tap");
|
|
|