// 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_TEST_CAPTURE_TRACKING_VIEW_H_ #define UI_VIEWS_TEST_CAPTURE_TRACKING_VIEW_H_ #include "ui/base/metadata/metadata_header_macros.h" #include "ui/views/view.h" namespace views::test { // Used to track OnMousePressed() and OnMouseCaptureLost(). class CaptureTrackingView : public views::View { … }; } // namespace views::test #endif // UI_VIEWS_TEST_CAPTURE_TRACKING_VIEW_H_