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

Unified Diff: ui/events/gestures/gesture_provider_impl_unittest.cc

Issue 988693005: Chromium roll (https://codereview.chromium.org/976353002) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: fixed bad android build patch Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/gestures/gesture_provider_impl.h ('k') | ui/events/gestures/gesture_recognizer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/gestures/gesture_provider_impl_unittest.cc
diff --git a/ui/events/gestures/gesture_provider_impl_unittest.cc b/ui/events/gestures/gesture_provider_impl_unittest.cc
index 66cc80884860101791d4246773078b4e02961ea9..fadedc1296221cc8b8c58c4dec6b2e042c4536f2 100644
--- a/ui/events/gestures/gesture_provider_impl_unittest.cc
+++ b/ui/events/gestures/gesture_provider_impl_unittest.cc
@@ -15,15 +15,15 @@ class GestureProviderImplTest : public testing::Test,
public:
GestureProviderImplTest() {}
- virtual ~GestureProviderImplTest() {}
+ ~GestureProviderImplTest() override {}
- virtual void OnGestureEvent(GestureEvent* event) override {}
+ void OnGestureEvent(GestureEvent* event) override {}
- virtual void SetUp() override {
+ void SetUp() override {
provider_.reset(new GestureProviderImpl(this));
}
- virtual void TearDown() override { provider_.reset(); }
+ void TearDown() override { provider_.reset(); }
GestureProviderImpl* provider() { return provider_.get(); }
« no previous file with comments | « ui/events/gestures/gesture_provider_impl.h ('k') | ui/events/gestures/gesture_recognizer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698