// Copyright 2011 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_CONTROLS_RESIZE_AREA_H_ #define UI_VIEWS_CONTROLS_RESIZE_AREA_H_ #include "base/memory/raw_ptr.h" #include "ui/views/view.h" namespace views { class ResizeAreaDelegate; // An invisible area that acts like a horizontal resizer. class VIEWS_EXPORT ResizeArea : public View { … }; } // namespace views #endif // UI_VIEWS_CONTROLS_RESIZE_AREA_H_