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

Unified Diff: ash/wm/gestures/overview_gesture_handler.cc

Issue 2095193002: clang-format all of //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « ash/wm/event_client_impl.cc ('k') | ash/wm/gestures/overview_gesture_handler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/gestures/overview_gesture_handler.cc
diff --git a/ash/wm/gestures/overview_gesture_handler.cc b/ash/wm/gestures/overview_gesture_handler.cc
index 1ed1484d2fe184f32ba505e639ebc48e275d850d..2b94b9eefe3bc64cc952241ac2f3a8434de651a7 100644
--- a/ash/wm/gestures/overview_gesture_handler.cc
+++ b/ash/wm/gestures/overview_gesture_handler.cc
@@ -20,13 +20,11 @@ const float kSwipeThresholdPixels = 300;
OverviewGestureHandler::OverviewGestureHandler() : scroll_x_(0), scroll_y_(0) {}
-OverviewGestureHandler::~OverviewGestureHandler() {
-}
+OverviewGestureHandler::~OverviewGestureHandler() {}
bool OverviewGestureHandler::ProcessScrollEvent(const ui::ScrollEvent& event) {
if (event.type() == ui::ET_SCROLL_FLING_START ||
- event.type() == ui::ET_SCROLL_FLING_CANCEL ||
- event.finger_count() != 3) {
+ event.type() == ui::ET_SCROLL_FLING_CANCEL || event.finger_count() != 3) {
scroll_x_ = scroll_y_ = 0;
return false;
}
« no previous file with comments | « ash/wm/event_client_impl.cc ('k') | ash/wm/gestures/overview_gesture_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698