Chromium Code Reviews| Index: chrome/browser/ui/browser_browsertest.cc |
| diff --git a/chrome/browser/ui/browser_browsertest.cc b/chrome/browser/ui/browser_browsertest.cc |
| index da10776145b10134468bb4c775a326e095870822..fde2e611c07fc14fc312c50de89965bb47b59548 100644 |
| --- a/chrome/browser/ui/browser_browsertest.cc |
| +++ b/chrome/browser/ui/browser_browsertest.cc |
| @@ -2099,7 +2099,9 @@ class MockWebContentsObserver : public WebContentsObserver { |
| got_user_gesture_(false) { |
| } |
| - void DidGetUserGesture() override { got_user_gesture_ = true; } |
| + void DidGetUserInteraction(const blink::WebInputEvent::Type type) override { |
|
tdresser
2016/02/25 14:42:48
Can we add a test that the type here is sane?
dominickn
2016/02/26 00:36:11
Done.
|
| + got_user_gesture_ = true; |
| + } |
| bool got_user_gesture() const { |
| return got_user_gesture_; |