// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/views/window/hit_test_utils.h" #include "ui/base/hit_test.h" #include "ui/gfx/geometry/point.h" #include "ui/views/view.h" #include "ui/views/view_class_properties.h" namespace views { int GetHitTestComponent(View* view, const gfx::Point& point_in_widget) { … } void SetHitTestComponent(View* view, int hit_test_id) { … } } // namespace views