// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_ANIMATION_SLIDE_OUT_CONTROLLER_H_ #define UI_VIEWS_ANIMATION_SLIDE_OUT_CONTROLLER_H_ #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "ui/events/scoped_target_handler.h" #include "ui/views/view.h" #include "ui/views/views_export.h" namespace views { class SlideOutControllerDelegate; // This class contains logic to control sliding out of a layer in response to // swipes, i.e. gesture scroll events. class VIEWS_EXPORT SlideOutController : public ui::EventHandler { … }; } // namespace views #endif // UI_VIEWS_ANIMATION_SLIDE_OUT_CONTROLLER_H_